/** # __----~~~~~~~~~~~------___ # . . ~~//====...... __--~ ~~ # -. \_|// |||\\ ~~~~~~::::... /~ # ___-==_ _-~o~ \/ ||| \\ _/~~- # __---~~~.==~||\=_ -_--~/_-~|- |\\ \\ _/~ # _-~~ .=~ | \\-_ '-~7 /- / || \ / # .~ .~ | \\ -_ / /- / || \ / # / ____ / | \\ ~-_/ /|- _/ .|| \ / # |~~ ~~|--~~~~--_ \ ~==-/ | \~--===~~ .\ # ' ~-| /| |-~\~~ __--~~ # |-~~-_/ | | ~\_ _-~ /\ # / \ \__ \/~ \__ # _--~ _/ | .-~~____--~-/ ~~==. # ((->/~ '.|||' -_| ~~-/ , . _|| # -_ ~\ ~~---l__i__i__i--~~_/ # _-~-__ ~) \--______________--~~ # //.-~~~-~_--~- |-------~~~~~~~~ # //.-~~~--\ # 神兽保佑 # 永无BUG! */ package com.nanjing.water.entity.request.sysdictdata; /** * 字典数据表 * @author lin.liu */ public class ReqCreateSysDictData { /** * 字典标题 */ private String dictLabel; /** * 字典键值 */ private String dictValue; /** * 字典类型 */ private String dictType; /** * 备注 */ private String remark; 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 String getRemark() { return this.remark; } public void setRemark(String remark) { this.remark = remark; } }