|
|
|
@ -2,12 +2,9 @@ package com.da.dangan.domain;
|
|
|
|
|
|
|
|
|
|
|
|
import com.da.common.annotation.Excel;
|
|
|
|
import com.da.common.annotation.Excel;
|
|
|
|
import com.da.common.core.domain.BaseEntity;
|
|
|
|
import com.da.common.core.domain.BaseEntity;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
|
|
|
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
|
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
|
|
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
|
|
|
|
|
|
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* 准迁证对象 da_zqz
|
|
|
|
* 准迁证对象 da_zqz
|
|
|
|
*
|
|
|
|
*
|
|
|
|
@ -62,9 +59,8 @@ public class DaZqz extends BaseEntity
|
|
|
|
private String sex1;
|
|
|
|
private String sex1;
|
|
|
|
|
|
|
|
|
|
|
|
/** 出生日期1 */
|
|
|
|
/** 出生日期1 */
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
|
@Excel(name = "出生日期1")
|
|
|
|
@Excel(name = "出生日期1", width = 30, dateFormat = "yyyy-MM-dd")
|
|
|
|
private String birthDate1;
|
|
|
|
private Date birthDate1;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** 身份证号1 */
|
|
|
|
/** 身份证号1 */
|
|
|
|
@Excel(name = "身份证号1")
|
|
|
|
@Excel(name = "身份证号1")
|
|
|
|
@ -83,9 +79,8 @@ public class DaZqz extends BaseEntity
|
|
|
|
private String sex2;
|
|
|
|
private String sex2;
|
|
|
|
|
|
|
|
|
|
|
|
/** 出生日期2 */
|
|
|
|
/** 出生日期2 */
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
|
@Excel(name = "出生日期2")
|
|
|
|
@Excel(name = "出生日期2", width = 30, dateFormat = "yyyy-MM-dd")
|
|
|
|
private String birthDate2;
|
|
|
|
private Date birthDate2;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** 身份证号2 */
|
|
|
|
/** 身份证号2 */
|
|
|
|
@Excel(name = "身份证号2")
|
|
|
|
@Excel(name = "身份证号2")
|
|
|
|
@ -100,9 +95,8 @@ public class DaZqz extends BaseEntity
|
|
|
|
private String name3;
|
|
|
|
private String name3;
|
|
|
|
|
|
|
|
|
|
|
|
/** 出生日期3 */
|
|
|
|
/** 出生日期3 */
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
|
@Excel(name = "出生日期3")
|
|
|
|
@Excel(name = "出生日期3", width = 30, dateFormat = "yyyy-MM-dd")
|
|
|
|
private String birthDate3;
|
|
|
|
private Date birthDate3;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** 性别3 */
|
|
|
|
/** 性别3 */
|
|
|
|
@Excel(name = "性别3")
|
|
|
|
@Excel(name = "性别3")
|
|
|
|
@ -125,9 +119,8 @@ public class DaZqz extends BaseEntity
|
|
|
|
private String sex4;
|
|
|
|
private String sex4;
|
|
|
|
|
|
|
|
|
|
|
|
/** 出生日期4 */
|
|
|
|
/** 出生日期4 */
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
|
@Excel(name = "出生日期4")
|
|
|
|
@Excel(name = "出生日期4", width = 30, dateFormat = "yyyy-MM-dd")
|
|
|
|
private String birthDate4;
|
|
|
|
private Date birthDate4;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** 身份证号4 */
|
|
|
|
/** 身份证号4 */
|
|
|
|
@Excel(name = "身份证号4")
|
|
|
|
@Excel(name = "身份证号4")
|
|
|
|
@ -154,9 +147,8 @@ public class DaZqz extends BaseEntity
|
|
|
|
private String cbr;
|
|
|
|
private String cbr;
|
|
|
|
|
|
|
|
|
|
|
|
/** 签发日期 */
|
|
|
|
/** 签发日期 */
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
|
@Excel(name = "签发日期")
|
|
|
|
@Excel(name = "签发日期", width = 30, dateFormat = "yyyy-MM-dd")
|
|
|
|
private String qfDate;
|
|
|
|
private Date qfDate;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** 识别图片id */
|
|
|
|
/** 识别图片id */
|
|
|
|
@Excel(name = "识别图片id")
|
|
|
|
@Excel(name = "识别图片id")
|
|
|
|
@ -293,15 +285,7 @@ public class DaZqz extends BaseEntity
|
|
|
|
{
|
|
|
|
{
|
|
|
|
return sex1;
|
|
|
|
return sex1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
public void setBirthDate1(Date birthDate1)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
this.birthDate1 = birthDate1;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public Date getBirthDate1()
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
return birthDate1;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setCardId1(String cardId1)
|
|
|
|
public void setCardId1(String cardId1)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
this.cardId1 = cardId1;
|
|
|
|
this.cardId1 = cardId1;
|
|
|
|
@ -338,15 +322,7 @@ public class DaZqz extends BaseEntity
|
|
|
|
{
|
|
|
|
{
|
|
|
|
return sex2;
|
|
|
|
return sex2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
public void setBirthDate2(Date birthDate2)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
this.birthDate2 = birthDate2;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public Date getBirthDate2()
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
return birthDate2;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setCardId2(String cardId2)
|
|
|
|
public void setCardId2(String cardId2)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
this.cardId2 = cardId2;
|
|
|
|
this.cardId2 = cardId2;
|
|
|
|
@ -374,15 +350,7 @@ public class DaZqz extends BaseEntity
|
|
|
|
{
|
|
|
|
{
|
|
|
|
return name3;
|
|
|
|
return name3;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
public void setBirthDate3(Date birthDate3)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
this.birthDate3 = birthDate3;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public Date getBirthDate3()
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
return birthDate3;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setSex3(String sex3)
|
|
|
|
public void setSex3(String sex3)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
this.sex3 = sex3;
|
|
|
|
this.sex3 = sex3;
|
|
|
|
@ -428,15 +396,7 @@ public class DaZqz extends BaseEntity
|
|
|
|
{
|
|
|
|
{
|
|
|
|
return sex4;
|
|
|
|
return sex4;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
public void setBirthDate4(Date birthDate4)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
this.birthDate4 = birthDate4;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public Date getBirthDate4()
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
return birthDate4;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setCardId4(String cardId4)
|
|
|
|
public void setCardId4(String cardId4)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
this.cardId4 = cardId4;
|
|
|
|
this.cardId4 = cardId4;
|
|
|
|
@ -491,15 +451,47 @@ public class DaZqz extends BaseEntity
|
|
|
|
{
|
|
|
|
{
|
|
|
|
return cbr;
|
|
|
|
return cbr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
public void setQfDate(Date qfDate)
|
|
|
|
|
|
|
|
{
|
|
|
|
public String getBirthDate1() {
|
|
|
|
this.qfDate = qfDate;
|
|
|
|
return birthDate1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public Date getQfDate()
|
|
|
|
public void setBirthDate1(String birthDate1) {
|
|
|
|
{
|
|
|
|
this.birthDate1 = birthDate1;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getBirthDate2() {
|
|
|
|
|
|
|
|
return birthDate2;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setBirthDate2(String birthDate2) {
|
|
|
|
|
|
|
|
this.birthDate2 = birthDate2;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getBirthDate3() {
|
|
|
|
|
|
|
|
return birthDate3;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setBirthDate3(String birthDate3) {
|
|
|
|
|
|
|
|
this.birthDate3 = birthDate3;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getBirthDate4() {
|
|
|
|
|
|
|
|
return birthDate4;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setBirthDate4(String birthDate4) {
|
|
|
|
|
|
|
|
this.birthDate4 = birthDate4;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getQfDate() {
|
|
|
|
return qfDate;
|
|
|
|
return qfDate;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setQfDate(String qfDate) {
|
|
|
|
|
|
|
|
this.qfDate = qfDate;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setPicIds(String picIds)
|
|
|
|
public void setPicIds(String picIds)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
this.picIds = picIds;
|
|
|
|
this.picIds = picIds;
|
|
|
|
|