/** # __----~~~~~~~~~~~------___ # . . ~~//====...... __--~ ~~ # -. \_|// |||\\ ~~~~~~::::... /~ # ___-==_ _-~o~ \/ ||| \\ _/~~- # __---~~~.==~||\=_ -_--~/_-~|- |\\ \\ _/~ # _-~~ .=~ | \\-_ '-~7 /- / || \ / # .~ .~ | \\ -_ / /- / || \ / # / ____ / | \\ ~-_/ /|- _/ .|| \ / # |~~ ~~|--~~~~--_ \ ~==-/ | \~--===~~ .\ # ' ~-| /| |-~\~~ __--~~ # |-~~-_/ | | ~\_ _-~ /\ # / \ \__ \/~ \__ # _--~ _/ | .-~~____--~-/ ~~==. # ((->/~ '.|||' -_| ~~-/ , . _|| # -_ ~\ ~~---l__i__i__i--~~_/ # _-~-__ ~) \--______________--~~ # //.-~~~-~_--~- |-------~~~~~~~~ # //.-~~~--\ # 神兽保佑 # 永无BUG! */ package com.nanjing.water.entity.request.sysdicttype; /** * 字典类型表 * @author lin.liu */ public class ReqModifySysDictType { /** * 主键 */ private Long id; /** * 字典名称 */ private String dictName; /** * 字典类型 */ 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 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 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; } }