
cn.ipokerface.admin.entity.AdminAuthority Maven / Gradle / Ivy
package cn.ipokerface.admin.entity;
import cn.ipokerface.admin.enums.AuthorityCategory;
import cn.ipokerface.common.model.entity.BaseTableEntity;
/**
*
* [ADMIN_AUTHORITY]
*/
public class AdminAuthority extends BaseTableEntity {
/**
* 权限名字
* [NAME]
* 2021-04-07T11:28:55.981
*/
private String name;
/**
* 权限描述
* [DESCRIPTION]
* 2021-04-07T11:28:55.983
*/
private String description;
/**
* 权限类型: 菜单组、菜单、按钮
* [CATEGORY]
* 2021-04-07T11:28:55.983
*/
private AuthorityCategory category;
/**
* 权限码
* [CODE]
* 2021-04-07T11:28:55.983
*/
private String code;
/**
* 路由
* [ROUTE]
* 2021-04-07T11:28:55.983
*/
private String route;
/**
* 接口权限列表 jsonarray
* [LINK]
* 2021-04-07T11:28:55.983
*/
private String link;
/**
* 所属权限
* [PARENT]
* 2021-04-07T11:28:55.983
*/
private Long parent;
/**
* 排序
* [SORT]
* 2021-04-07T11:28:55.983
*/
private Integer sort;
/**
* 菜单图标
* [ICON]
* 2021-04-07T11:28:55.984
*/
private String icon;
/**
* 备注字段
* [REMARK]
* 2021-04-07T11:28:55.984
*/
private String remark;
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column ADMIN_AUTHORITY.NAME
*
* @return the value of ADMIN_AUTHORITY.NAME
*
* .generated Wed Apr 07 11:28:55 CST 2021
*/
public String getName() {
return name;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column ADMIN_AUTHORITY.NAME
*
* @param name the value for ADMIN_AUTHORITY.NAME
*
* .generated Wed Apr 07 11:28:55 CST 2021
*/
public void setName(String name) {
this.name = name;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column ADMIN_AUTHORITY.DESCRIPTION
*
* @return the value of ADMIN_AUTHORITY.DESCRIPTION
*
* .generated Wed Apr 07 11:28:55 CST 2021
*/
public String getDescription() {
return description;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column ADMIN_AUTHORITY.DESCRIPTION
*
* @param description the value for ADMIN_AUTHORITY.DESCRIPTION
*
* .generated Wed Apr 07 11:28:55 CST 2021
*/
public void setDescription(String description) {
this.description = description;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column ADMIN_AUTHORITY.CATEGORY
*
* @return the value of ADMIN_AUTHORITY.CATEGORY
*
* .generated Wed Apr 07 11:28:55 CST 2021
*/
public AuthorityCategory getCategory() {
return category;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column ADMIN_AUTHORITY.CATEGORY
*
* @param category the value for ADMIN_AUTHORITY.CATEGORY
*
* .generated Wed Apr 07 11:28:55 CST 2021
*/
public void setCategory(AuthorityCategory category) {
this.category = category;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column ADMIN_AUTHORITY.CODE
*
* @return the value of ADMIN_AUTHORITY.CODE
*
* .generated Wed Apr 07 11:28:55 CST 2021
*/
public String getCode() {
return code;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column ADMIN_AUTHORITY.CODE
*
* @param code the value for ADMIN_AUTHORITY.CODE
*
* .generated Wed Apr 07 11:28:55 CST 2021
*/
public void setCode(String code) {
this.code = code;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column ADMIN_AUTHORITY.ROUTE
*
* @return the value of ADMIN_AUTHORITY.ROUTE
*
* .generated Wed Apr 07 11:28:55 CST 2021
*/
public String getRoute() {
return route;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column ADMIN_AUTHORITY.ROUTE
*
* @param route the value for ADMIN_AUTHORITY.ROUTE
*
* .generated Wed Apr 07 11:28:55 CST 2021
*/
public void setRoute(String route) {
this.route = route;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column ADMIN_AUTHORITY.LINK
*
* @return the value of ADMIN_AUTHORITY.LINK
*
* .generated Wed Apr 07 11:28:55 CST 2021
*/
public String getLink() {
return link;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column ADMIN_AUTHORITY.LINK
*
* @param link the value for ADMIN_AUTHORITY.LINK
*
* .generated Wed Apr 07 11:28:55 CST 2021
*/
public void setLink(String link) {
this.link = link;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column ADMIN_AUTHORITY.PARENT
*
* @return the value of ADMIN_AUTHORITY.PARENT
*
* .generated Wed Apr 07 11:28:55 CST 2021
*/
public Long getParent() {
return parent;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column ADMIN_AUTHORITY.PARENT
*
* @param parent the value for ADMIN_AUTHORITY.PARENT
*
* .generated Wed Apr 07 11:28:55 CST 2021
*/
public void setParent(Long parent) {
this.parent = parent;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column ADMIN_AUTHORITY.SORT
*
* @return the value of ADMIN_AUTHORITY.SORT
*
* .generated Wed Apr 07 11:28:55 CST 2021
*/
public Integer getSort() {
return sort;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column ADMIN_AUTHORITY.SORT
*
* @param sort the value for ADMIN_AUTHORITY.SORT
*
* .generated Wed Apr 07 11:28:55 CST 2021
*/
public void setSort(Integer sort) {
this.sort = sort;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column ADMIN_AUTHORITY.ICON
*
* @return the value of ADMIN_AUTHORITY.ICON
*
* .generated Wed Apr 07 11:28:55 CST 2021
*/
public String getIcon() {
return icon;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column ADMIN_AUTHORITY.ICON
*
* @param icon the value for ADMIN_AUTHORITY.ICON
*
* .generated Wed Apr 07 11:28:55 CST 2021
*/
public void setIcon(String icon) {
this.icon = icon;
}
/**
* This method was generated by MyBatis Generator.
* This method returns the value of the database column ADMIN_AUTHORITY.REMARK
*
* @return the value of ADMIN_AUTHORITY.REMARK
*
* .generated Wed Apr 07 11:28:55 CST 2021
*/
public String getRemark() {
return remark;
}
/**
* This method was generated by MyBatis Generator.
* This method sets the value of the database column ADMIN_AUTHORITY.REMARK
*
* @param remark the value for ADMIN_AUTHORITY.REMARK
*
* .generated Wed Apr 07 11:28:55 CST 2021
*/
public void setRemark(String remark) {
this.remark = remark;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy