| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217 |
- 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;
- /**
- * <p>
- * 当事人/代理人信息
- * </p>
- *
- * @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 +
- "}";
- }
- }
|