package com.whyc.pojo;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import org.apache.ibatis.type.Alias;
|
|
/**
|
* 权限
|
*/
|
@Alias("Privilege")
|
@TableName( schema = "`db_3.5mw_web`",value = "tb_privilege")
|
public class Privilege {
|
|
private Integer id;
|
private String privilege;
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
public String getPrivilege() {
|
return privilege;
|
}
|
|
public void setPrivilege(String privilege) {
|
this.privilege = privilege;
|
}
|
}
|