/**
|
# __----~~~~~~~~~~~------___
|
# . . ~~//====...... __--~ ~~
|
# -. \_|// |||\\ ~~~~~~::::... /~
|
# ___-==_ _-~o~ \/ ||| \\ _/~~-
|
# __---~~~.==~||\=_ -_--~/_-~|- |\\ \\ _/~
|
# _-~~ .=~ | \\-_ '-~7 /- / || \ /
|
# .~ .~ | \\ -_ / /- / || \ /
|
# / ____ / | \\ ~-_/ /|- _/ .|| \ /
|
# |~~ ~~|--~~~~--_ \ ~==-/ | \~--===~~ .\
|
# ' ~-| /| |-~\~~ __--~~
|
# |-~~-_/ | | ~\_ _-~ /\
|
# / \ \__ \/~ \__
|
# _--~ _/ | .-~~____--~-/ ~~==.
|
# ((->/~ '.|||' -_| ~~-/ , . _||
|
# -_ ~\ ~~---l__i__i__i--~~_/
|
# _-~-__ ~) \--______________--~~
|
# //.-~~~-~_--~- |-------~~~~~~~~
|
# //.-~~~--\
|
# 神兽保佑
|
# 永无BUG!
|
*/
|
package com.nanjing.water.entity.request.sysdictdata;
|
|
/**
|
* 字典数据表
|
* @author lin.liu
|
*/
|
|
public class ReqModifySysDictData {
|
/**
|
* 主键
|
*/
|
private Long id;
|
/**
|
* 字典标题
|
*/
|
private String dictLabel;
|
/**
|
* 字典键值
|
*/
|
private String dictValue;
|
/**
|
* 字典类型
|
*/
|
private String dictType;
|
/**
|
* 状态
|
*/
|
private Integer status;
|
/**
|
* 备注
|
*/
|
private String remark;
|
|
public Long getId() {
|
return this.id;
|
}
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getDictLabel() {
|
return this.dictLabel;
|
}
|
public void setDictLabel(String dictLabel) {
|
this.dictLabel = dictLabel;
|
}
|
|
public String getDictValue() {
|
return this.dictValue;
|
}
|
public void setDictValue(String dictValue) {
|
this.dictValue = dictValue;
|
}
|
|
public String getDictType() {
|
return this.dictType;
|
}
|
public void setDictType(String dictType) {
|
this.dictType = dictType;
|
}
|
|
public Integer getStatus() {
|
return this.status;
|
}
|
public void setStatus(Integer status) {
|
this.status = status;
|
}
|
|
public String getRemark() {
|
return this.remark;
|
}
|
public void setRemark(String remark) {
|
this.remark = remark;
|
}
|
}
|