package me.zhengjie.dao.mybatis.entity; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import java.io.Serializable; /** *

* 当事人/代理人信息 *

* * @author humuyu * @since 2022-03-10 */ @TableName("persons") public class PersonsEntity implements Serializable { private static final long serialVersionUID = 1L; @TableId(value = "id", type = IdType.AUTO) private Integer id; /** * 是否法人,当事人为组织或企业时填写 */ @TableField("zzlx") private Integer zzlx; /** * 法人类别,当事人为组织或企业时填写 */ @TableField("frlb") private String frlb; /** * 法定代表人,当事人为组织或企业时填写 */ @TableField("fddbr") private String fddbr; /** * 当事人类别 参照 当事人/代理人类别 字典 */ @TableField("nature_type") private String natureType; /** * 当事人姓名/单位名称 */ @TableField("dsrmc") private String dsrmc; /** * 证件类型 */ @TableField("zjlx") private String zjlx; /** * 证件号码 */ @TableField("zjhm") private String zjhm; /** * 国籍 */ @TableField("gjdm") private String gjdm; /** * 身份特征 */ @TableField("sftz") private String sftz; /** * 地址 */ @TableField("lxdz") private String lxdz; /** * 电话 */ @TableField("lxdh") private String lxdh; public Integer getId() { return id; } public PersonsEntity setId(Integer id) { this.id = id; return this; } public Integer getZzlx() { return zzlx; } public PersonsEntity setZzlx(Integer zzlx) { this.zzlx = zzlx; return this; } public String getFrlb() { return frlb; } public PersonsEntity setFrlb(String frlb) { this.frlb = frlb; return this; } public String getFddbr() { return fddbr; } public PersonsEntity setFddbr(String fddbr) { this.fddbr = fddbr; return this; } public String getNatureType() { return natureType; } public PersonsEntity setNatureType(String natureType) { this.natureType = natureType; return this; } public String getDsrmc() { return dsrmc; } public PersonsEntity setDsrmc(String dsrmc) { this.dsrmc = dsrmc; return this; } public String getZjlx() { return zjlx; } public PersonsEntity setZjlx(String zjlx) { this.zjlx = zjlx; return this; } public String getZjhm() { return zjhm; } public PersonsEntity setZjhm(String zjhm) { this.zjhm = zjhm; return this; } public String getGjdm() { return gjdm; } public PersonsEntity setGjdm(String gjdm) { this.gjdm = gjdm; return this; } public String getSftz() { return sftz; } public PersonsEntity setSftz(String sftz) { this.sftz = sftz; return this; } public String getLxdz() { return lxdz; } public PersonsEntity setLxdz(String lxdz) { this.lxdz = lxdz; return this; } public String getLxdh() { return lxdh; } public PersonsEntity setLxdh(String lxdh) { this.lxdh = lxdh; return this; } @Override public String toString() { return "PersonsEntity{" + "id=" + id + ", zzlx=" + zzlx + ", frlb=" + frlb + ", fddbr=" + fddbr + ", natureType=" + natureType + ", dsrmc=" + dsrmc + ", zjlx=" + zjlx + ", zjhm=" + zjhm + ", gjdm=" + gjdm + ", sftz=" + sftz + ", lxdz=" + lxdz + ", lxdh=" + lxdh + "}"; } }