package cn.flightfeather.thirdapp.bean.entity;
|
|
import org.greenrobot.greendao.annotation.Entity;
|
import org.greenrobot.greendao.annotation.Id;
|
import org.greenrobot.greendao.annotation.Property;
|
import org.greenrobot.greendao.annotation.Generated;
|
|
/**
|
* Created by note_ff_1602 on 2017/12/26.
|
*/
|
@Entity
|
public class Domainitem {
|
|
@Id
|
private String guid;
|
|
@Property
|
private String dcguid;
|
|
@Property
|
private String catelogname;
|
|
@Property
|
private String value;
|
|
@Property
|
private String text;
|
|
@Property
|
private Integer index;
|
|
@Property
|
private String parentguid;
|
|
@Property
|
private Boolean isenable;
|
|
@Property
|
private String code;
|
|
@Property
|
private String remark;
|
|
@Generated(hash = 364078670)
|
public Domainitem(String guid, String dcguid, String catelogname, String value,
|
String text, Integer index, String parentguid, Boolean isenable,
|
String code, String remark) {
|
this.guid = guid;
|
this.dcguid = dcguid;
|
this.catelogname = catelogname;
|
this.value = value;
|
this.text = text;
|
this.index = index;
|
this.parentguid = parentguid;
|
this.isenable = isenable;
|
this.code = code;
|
this.remark = remark;
|
}
|
|
@Generated(hash = 1359730206)
|
public Domainitem() {
|
}
|
|
public String getGuid() {
|
return this.guid;
|
}
|
|
public void setGuid(String guid) {
|
this.guid = guid;
|
}
|
|
public String getDcguid() {
|
return this.dcguid;
|
}
|
|
public void setDcguid(String dcguid) {
|
this.dcguid = dcguid;
|
}
|
|
public String getCatelogname() {
|
return this.catelogname;
|
}
|
|
public void setCatelogname(String catelogname) {
|
this.catelogname = catelogname;
|
}
|
|
public String getValue() {
|
return this.value;
|
}
|
|
public void setValue(String value) {
|
this.value = value;
|
}
|
|
public String getText() {
|
return this.text;
|
}
|
|
public void setText(String text) {
|
this.text = text;
|
}
|
|
public Integer getIndex() {
|
return this.index;
|
}
|
|
public void setIndex(Integer index) {
|
this.index = index;
|
}
|
|
public String getParentguid() {
|
return this.parentguid;
|
}
|
|
public void setParentguid(String parentguid) {
|
this.parentguid = parentguid;
|
}
|
|
public Boolean getIsenable() {
|
return this.isenable;
|
}
|
|
public void setIsenable(Boolean isenable) {
|
this.isenable = isenable;
|
}
|
|
public String getCode() {
|
return this.code;
|
}
|
|
public void setCode(String code) {
|
this.code = code;
|
}
|
|
public String getRemark() {
|
return this.remark;
|
}
|
|
public void setRemark(String remark) {
|
this.remark = remark;
|
}
|
|
}
|