|
@@ -11,56 +11,6 @@ import java.util.Date;
|
|
|
* @Date 2023 08 01 09 59
|
|
|
**/
|
|
|
public class PeopleDto {
|
|
|
- public PeopleDto(Long id, Long tradeAreaId, String tradeAreaName, String borderName, String code, Integer gencd, Integer age, String idCardNo, String idCardImg, String borderTel, String bankNo, String bankCode, String bankName, Long groupId, String groupName, Integer status, Integer role, Double lng, Double lat, String lastLocation, String address, String addressIds, String detailAddress, Integer isLock, Double leftPrice, Integer judgeStatus, String judgeContent, Date registerTime, Date judgeTime, String personId, Date createTime, String createBy, String createName, Date updateTime, String updateBy, String updateName, Integer deleteStatus, String platSeqNo, Date startDate, Date endDate, String idcdGcertPgoffNm, String birplAddr, String customsCode, Date expiry, String putrecNo, String localGovernmentNo, String filingStatus, String fieldCode) {
|
|
|
- this.id = id;
|
|
|
- this.tradeAreaId = tradeAreaId;
|
|
|
- this.tradeAreaName = tradeAreaName;
|
|
|
- this.borderName = borderName;
|
|
|
- this.code = code;
|
|
|
- this.gencd = gencd;
|
|
|
- this.age = age;
|
|
|
- this.idCardNo = idCardNo;
|
|
|
- this.idCardImg = idCardImg;
|
|
|
- this.borderTel = borderTel;
|
|
|
- this.bankNo = bankNo;
|
|
|
- this.bankCode = bankCode;
|
|
|
- this.bankName = bankName;
|
|
|
- this.groupId = groupId;
|
|
|
- this.groupName = groupName;
|
|
|
- this.status = status;
|
|
|
- this.role = role;
|
|
|
- this.lng = lng;
|
|
|
- this.lat = lat;
|
|
|
- this.lastLocation = lastLocation;
|
|
|
- this.address = address;
|
|
|
- this.addressIds = addressIds;
|
|
|
- this.detailAddress = detailAddress;
|
|
|
- this.isLock = isLock;
|
|
|
- this.leftPrice = leftPrice;
|
|
|
- this.judgeStatus = judgeStatus;
|
|
|
- this.judgeContent = judgeContent;
|
|
|
- this.registerTime = registerTime;
|
|
|
- this.judgeTime = judgeTime;
|
|
|
- this.personId = personId;
|
|
|
- this.createTime = createTime;
|
|
|
- this.createBy = createBy;
|
|
|
- this.createName = createName;
|
|
|
- this.updateTime = updateTime;
|
|
|
- this.updateBy = updateBy;
|
|
|
- this.updateName = updateName;
|
|
|
- this.deleteStatus = deleteStatus;
|
|
|
- this.platSeqNo = platSeqNo;
|
|
|
- this.startDate = startDate;
|
|
|
- this.endDate = endDate;
|
|
|
- this.idcdGcertPgoffNm = idcdGcertPgoffNm;
|
|
|
- this.birplAddr = birplAddr;
|
|
|
- this.customsCode = customsCode;
|
|
|
- this.expiry = expiry;
|
|
|
- this.putrecNo = putrecNo;
|
|
|
- this.localGovernmentNo = localGovernmentNo;
|
|
|
- this.filingStatus = filingStatus;
|
|
|
- this.fieldCode = fieldCode;
|
|
|
- }
|
|
|
|
|
|
public PeopleDto() {
|
|
|
}
|
|
@@ -89,13 +39,7 @@ public class PeopleDto {
|
|
|
this.tradeAreaName = tradeAreaName;
|
|
|
}
|
|
|
|
|
|
- public String getBorderName() {
|
|
|
- return borderName;
|
|
|
- }
|
|
|
|
|
|
- public void setBorderName(String borderName) {
|
|
|
- this.borderName = borderName;
|
|
|
- }
|
|
|
|
|
|
public String getCode() {
|
|
|
return code;
|
|
@@ -105,13 +49,7 @@ public class PeopleDto {
|
|
|
this.code = code;
|
|
|
}
|
|
|
|
|
|
- public Integer getGencd() {
|
|
|
- return gencd;
|
|
|
- }
|
|
|
|
|
|
- public void setGencd(Integer gencd) {
|
|
|
- this.gencd = gencd;
|
|
|
- }
|
|
|
|
|
|
public Integer getAge() {
|
|
|
return age;
|
|
@@ -121,28 +59,98 @@ public class PeopleDto {
|
|
|
this.age = age;
|
|
|
}
|
|
|
|
|
|
- public String getIdCardNo() {
|
|
|
- return idCardNo;
|
|
|
- }
|
|
|
|
|
|
- public void setIdCardNo(String idCardNo) {
|
|
|
- this.idCardNo = idCardNo;
|
|
|
- }
|
|
|
|
|
|
public String getIdCardImg() {
|
|
|
return idCardImg;
|
|
|
}
|
|
|
|
|
|
+ public String getName() {
|
|
|
+ return name;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setName(String name) {
|
|
|
+ this.name = name;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getSex() {
|
|
|
+ return sex;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSex(Integer sex) {
|
|
|
+ this.sex = sex;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getIdCard() {
|
|
|
+ return idCard;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setIdCard(String idCard) {
|
|
|
+ this.idCard = idCard;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getPhone() {
|
|
|
+ return phone;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPhone(String phone) {
|
|
|
+ this.phone = phone;
|
|
|
+ }
|
|
|
+
|
|
|
public void setIdCardImg(String idCardImg) {
|
|
|
this.idCardImg = idCardImg;
|
|
|
}
|
|
|
|
|
|
- public String getBorderTel() {
|
|
|
- return borderTel;
|
|
|
- }
|
|
|
|
|
|
- public void setBorderTel(String borderTel) {
|
|
|
- this.borderTel = borderTel;
|
|
|
+ public PeopleDto(Long id, Long tradeAreaId, String tradeAreaName, String name, String code, Integer sex, Integer age, String idCard, String idCardImg, String phone, String bankNo, String bankCode, String bankName, Long groupId, String groupName, Integer status, Integer role, Double lng, Double lat, String lastLocation, String address, String addressIds, String detailAddress, Integer isLock, Double leftPrice, Integer judgeStatus, String judgeContent, Date registerTime, Date judgeTime, String personId, Date createTime, String createBy, String createName, Date updateTime, String updateBy, String updateName, Integer deleteStatus, String platSeqNo, Date startDate, Date endDate, String idcdGcertPgoffNm, String birplAddr, String customsCode, Date expiry, String putrecNo, String localGovernmentNo, String filingStatus, String fieldCode) {
|
|
|
+ this.id = id;
|
|
|
+ this.tradeAreaId = tradeAreaId;
|
|
|
+ this.tradeAreaName = tradeAreaName;
|
|
|
+ this.name = name;
|
|
|
+ this.code = code;
|
|
|
+ this.sex = sex;
|
|
|
+ this.age = age;
|
|
|
+ this.idCard = idCard;
|
|
|
+ this.idCardImg = idCardImg;
|
|
|
+ this.phone = phone;
|
|
|
+ this.bankNo = bankNo;
|
|
|
+ this.bankCode = bankCode;
|
|
|
+ this.bankName = bankName;
|
|
|
+ this.groupId = groupId;
|
|
|
+ this.groupName = groupName;
|
|
|
+ this.status = status;
|
|
|
+ this.role = role;
|
|
|
+ this.lng = lng;
|
|
|
+ this.lat = lat;
|
|
|
+ this.lastLocation = lastLocation;
|
|
|
+ this.address = address;
|
|
|
+ this.addressIds = addressIds;
|
|
|
+ this.detailAddress = detailAddress;
|
|
|
+ this.isLock = isLock;
|
|
|
+ this.leftPrice = leftPrice;
|
|
|
+ this.judgeStatus = judgeStatus;
|
|
|
+ this.judgeContent = judgeContent;
|
|
|
+ this.registerTime = registerTime;
|
|
|
+ this.judgeTime = judgeTime;
|
|
|
+ this.personId = personId;
|
|
|
+ this.createTime = createTime;
|
|
|
+ this.createBy = createBy;
|
|
|
+ this.createName = createName;
|
|
|
+ this.updateTime = updateTime;
|
|
|
+ this.updateBy = updateBy;
|
|
|
+ this.updateName = updateName;
|
|
|
+ this.deleteStatus = deleteStatus;
|
|
|
+ this.platSeqNo = platSeqNo;
|
|
|
+ this.startDate = startDate;
|
|
|
+ this.endDate = endDate;
|
|
|
+ this.idcdGcertPgoffNm = idcdGcertPgoffNm;
|
|
|
+ this.birplAddr = birplAddr;
|
|
|
+ this.customsCode = customsCode;
|
|
|
+ this.expiry = expiry;
|
|
|
+ this.putrecNo = putrecNo;
|
|
|
+ this.localGovernmentNo = localGovernmentNo;
|
|
|
+ this.filingStatus = filingStatus;
|
|
|
+ this.fieldCode = fieldCode;
|
|
|
}
|
|
|
|
|
|
public String getBankNo() {
|
|
@@ -464,7 +472,7 @@ public class PeopleDto {
|
|
|
/**
|
|
|
* 姓名
|
|
|
*/
|
|
|
- private String borderName;
|
|
|
+ private String name;
|
|
|
|
|
|
/**
|
|
|
* 边民号
|
|
@@ -474,7 +482,7 @@ public class PeopleDto {
|
|
|
/**
|
|
|
* 性别(1=男,2=女)
|
|
|
*/
|
|
|
- private Integer gencd;
|
|
|
+ private Integer sex;
|
|
|
|
|
|
/**
|
|
|
* 年龄
|
|
@@ -484,7 +492,7 @@ public class PeopleDto {
|
|
|
/**
|
|
|
* 身份证
|
|
|
*/
|
|
|
- private String idCardNo;
|
|
|
+ private String idCard;
|
|
|
|
|
|
/**
|
|
|
* 身份证复印件
|
|
@@ -494,7 +502,7 @@ public class PeopleDto {
|
|
|
/**
|
|
|
* 手机号码
|
|
|
*/
|
|
|
- private String borderTel;
|
|
|
+ private String phone;
|
|
|
|
|
|
/**
|
|
|
* 银行编号
|