/**
|
# __----~~~~~~~~~~~------___
|
# . . ~~//====...... __--~ ~~
|
# -. \_|// |||\\ ~~~~~~::::... /~
|
# ___-==_ _-~o~ \/ ||| \\ _/~~-
|
# __---~~~.==~||\=_ -_--~/_-~|- |\\ \\ _/~
|
# _-~~ .=~ | \\-_ '-~7 /- / || \ /
|
# .~ .~ | \\ -_ / /- / || \ /
|
# / ____ / | \\ ~-_/ /|- _/ .|| \ /
|
# |~~ ~~|--~~~~--_ \ ~==-/ | \~--===~~ .\
|
# ' ~-| /| |-~\~~ __--~~
|
# |-~~-_/ | | ~\_ _-~ /\
|
# / \ \__ \/~ \__
|
# _--~ _/ | .-~~____--~-/ ~~==.
|
# ((->/~ '.|||' -_| ~~-/ , . _||
|
# -_ ~\ ~~---l__i__i__i--~~_/
|
# _-~-__ ~) \--______________--~~
|
# //.-~~~-~_--~- |-------~~~~~~~~
|
# //.-~~~--\
|
# 神兽保佑
|
# 永无BUG!
|
*/
|
package com.nanjing.water.entity.request.adminrole;
|
|
/**
|
* 后台用户角色表
|
* @author lin.liu
|
*/
|
|
public class ReqModifyAdminRole {
|
/**
|
* 主键
|
*/
|
private Long id;
|
/**
|
* 角色名称
|
*/
|
private String name;
|
/**
|
* 描述
|
*/
|
private String description;
|
/**
|
* 状态 EState
|
*/
|
private Integer status;
|
/**
|
* 排序值
|
*/
|
private Integer sort;
|
|
public Long getId() {
|
return this.id;
|
}
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getName() {
|
return this.name;
|
}
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getDescription() {
|
return this.description;
|
}
|
public void setDescription(String description) {
|
this.description = description;
|
}
|
|
public Integer getStatus() {
|
return this.status;
|
}
|
public void setStatus(Integer status) {
|
this.status = status;
|
}
|
|
public Integer getSort() {
|
return this.sort;
|
}
|
public void setSort(Integer sort) {
|
this.sort = sort;
|
}
|
}
|