package cn.flightfeather.thirdapp.bean; 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 Userinfo { @Id private String guid; @Property private String acountname; @Property private String realname; @Property private String password; @Property private Byte usertypeid; @Property private String usertype; @Property private String dguid; @Property private String departmentname; @Property private Boolean isenable; @Property private String workno; @Property private String telephone; @Property private String wechatid; @Property private String extension1; @Property private String extension2; @Property private String extension3; @Property private String remark; @Generated(hash = 683835847) public Userinfo(String guid, String acountname, String realname, String password, Byte usertypeid, String usertype, String dguid, String departmentname, Boolean isenable, String workno, String telephone, String wechatid, String extension1, String extension2, String extension3, String remark) { this.guid = guid; this.acountname = acountname; this.realname = realname; this.password = password; this.usertypeid = usertypeid; this.usertype = usertype; this.dguid = dguid; this.departmentname = departmentname; this.isenable = isenable; this.workno = workno; this.telephone = telephone; this.wechatid = wechatid; this.extension1 = extension1; this.extension2 = extension2; this.extension3 = extension3; this.remark = remark; } @Generated(hash = 315344238) public Userinfo() { } public String getGuid() { return this.guid; } public void setGuid(String guid) { this.guid = guid; } public String getAcountname() { return this.acountname; } public void setAcountname(String acountname) { this.acountname = acountname; } public String getRealname() { return this.realname; } public void setRealname(String realname) { this.realname = realname; } public String getPassword() { return this.password; } public void setPassword(String password) { this.password = password; } public Byte getUsertypeid() { return this.usertypeid; } public void setUsertypeid(Byte usertypeid) { this.usertypeid = usertypeid; } public String getUsertype() { return this.usertype; } public void setUsertype(String usertype) { this.usertype = usertype; } public String getDguid() { return this.dguid; } public void setDguid(String dguid) { this.dguid = dguid; } public String getDepartmentname() { return this.departmentname; } public void setDepartmentname(String departmentname) { this.departmentname = departmentname; } public Boolean getIsenable() { return this.isenable; } public void setIsenable(Boolean isenable) { this.isenable = isenable; } public String getWorkno() { return this.workno; } public void setWorkno(String workno) { this.workno = workno; } public String getTelephone() { return this.telephone; } public void setTelephone(String telephone) { this.telephone = telephone; } public String getWechatid() { return this.wechatid; } public void setWechatid(String wechatid) { this.wechatid = wechatid; } public String getExtension1() { return this.extension1; } public void setExtension1(String extension1) { this.extension1 = extension1; } public String getExtension2() { return this.extension2; } public void setExtension2(String extension2) { this.extension2 = extension2; } public String getExtension3() { return this.extension3; } public void setExtension3(String extension3) { this.extension3 = extension3; } public String getRemark() { return this.remark; } public void setRemark(String remark) { this.remark = remark; } }