65 lines
1.2 KiB
Plaintext
65 lines
1.2 KiB
Plaintext
|
|
package com.bonus.sys.beans;
|
||
|
|
|
||
|
|
import com.bonus.sys.BaseBean;
|
||
|
|
|
||
|
|
import lombok.Data;
|
||
|
|
|
||
|
|
@Data
|
||
|
|
public class SysDataDictBean extends BaseBean implements java.io.Serializable {
|
||
|
|
private static final long serialVersionUID = 1L;
|
||
|
|
|
||
|
|
private Integer id;
|
||
|
|
|
||
|
|
private String name;
|
||
|
|
|
||
|
|
private String value;
|
||
|
|
|
||
|
|
private SysDictTypeBean dictType;
|
||
|
|
|
||
|
|
public SysDataDictBean(Integer id) {
|
||
|
|
super();
|
||
|
|
this.id = id;
|
||
|
|
}
|
||
|
|
|
||
|
|
public SysDataDictBean() {
|
||
|
|
super();
|
||
|
|
}
|
||
|
|
|
||
|
|
@Override
|
||
|
|
public String toString() {
|
||
|
|
return "SysDataDictBean [id=" + id + ", name=" + name + ", value=" + value + ", dictType=" + dictType
|
||
|
|
+ "]";
|
||
|
|
}
|
||
|
|
|
||
|
|
public Integer getId() {
|
||
|
|
return id;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setId(Integer id) {
|
||
|
|
this.id = id;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getName() {
|
||
|
|
return name;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setName(String name) {
|
||
|
|
this.name = name;
|
||
|
|
}
|
||
|
|
|
||
|
|
public String getValue() {
|
||
|
|
return value;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setValue(String value) {
|
||
|
|
this.value = value;
|
||
|
|
}
|
||
|
|
|
||
|
|
public SysDictTypeBean getDictType() {
|
||
|
|
return dictType;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setDictType(SysDictTypeBean dictType) {
|
||
|
|
this.dictType = dictType;
|
||
|
|
}
|
||
|
|
}
|