/**
|
# __----~~~~~~~~~~~------___
|
# . . ~~//====...... __--~ ~~
|
# -. \_|// |||\\ ~~~~~~::::... /~
|
# ___-==_ _-~o~ \/ ||| \\ _/~~-
|
# __---~~~.==~||\=_ -_--~/_-~|- |\\ \\ _/~
|
# _-~~ .=~ | \\-_ '-~7 /- / || \ /
|
# .~ .~ | \\ -_ / /- / || \ /
|
# / ____ / | \\ ~-_/ /|- _/ .|| \ /
|
# |~~ ~~|--~~~~--_ \ ~==-/ | \~--===~~ .\
|
# ' ~-| /| |-~\~~ __--~~
|
# |-~~-_/ | | ~\_ _-~ /\
|
# / \ \__ \/~ \__
|
# _--~ _/ | .-~~____--~-/ ~~==.
|
# ((->/~ '.|||' -_| ~~-/ , . _||
|
# -_ ~\ ~~---l__i__i__i--~~_/
|
# _-~-__ ~) \--______________--~~
|
# //.-~~~-~_--~- |-------~~~~~~~~
|
# //.-~~~--\
|
# 神兽保佑
|
# 永无BUG!
|
*/
|
package com.nanjing.water.entity.request.sysdicttype;
|
|
/**
|
* 字典类型表
|
* @author lin.liu
|
*/
|
|
public class ReqCreateSysDictType {
|
/**
|
* 字典名称
|
*/
|
private String dictName;
|
/**
|
* 字典类型
|
*/
|
private String dictType;
|
/**
|
* 备注
|
*/
|
private String remark;
|
|
public String getDictName() {
|
return this.dictName;
|
}
|
public void setDictName(String dictName) {
|
this.dictName = dictName;
|
}
|
|
public String getDictType() {
|
return this.dictType;
|
}
|
public void setDictType(String dictType) {
|
this.dictType = dictType;
|
}
|
|
public String getRemark() {
|
return this.remark;
|
}
|
public void setRemark(String remark) {
|
this.remark = remark;
|
}
|
}
|