添加字段

master
hansha 2 years ago
parent dc04eea7c6
commit eb817ea36b

@ -1,17 +1,18 @@
package com.da.dangan.domain; package com.da.dangan.domain;
import java.util.Date; import com.da.common.annotation.Excel;
import com.da.common.core.domain.BaseEntity;
import com.fasterxml.jackson.annotation.JsonFormat; 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 com.da.common.annotation.Excel;
import com.da.common.core.domain.BaseEntity; import java.util.Date;
/** /**
* da_zqz * da_zqz
* *
* @author hs * @author hs
* @date 2024-06-14 * @date 2024-06-15
*/ */
public class DaZqz extends BaseEntity public class DaZqz extends BaseEntity
{ {
@ -60,6 +61,11 @@ public class DaZqz extends BaseEntity
@Excel(name = "性别1") @Excel(name = "性别1")
private String sex1; private String sex1;
/** 出生日期1 */
@JsonFormat(pattern = "yyyy-MM-dd")
@Excel(name = "出生日期1", width = 30, dateFormat = "yyyy-MM-dd")
private Date birthDate1;
/** 身份证号1 */ /** 身份证号1 */
@Excel(name = "身份证号1") @Excel(name = "身份证号1")
private String cardId1; private String cardId1;
@ -76,6 +82,11 @@ public class DaZqz extends BaseEntity
@Excel(name = "性别2") @Excel(name = "性别2")
private String sex2; private String sex2;
/** 出生日期2 */
@JsonFormat(pattern = "yyyy-MM-dd")
@Excel(name = "出生日期2", width = 30, dateFormat = "yyyy-MM-dd")
private Date birthDate2;
/** 身份证号2 */ /** 身份证号2 */
@Excel(name = "身份证号2") @Excel(name = "身份证号2")
private String cardId2; private String cardId2;
@ -88,6 +99,11 @@ public class DaZqz extends BaseEntity
@Excel(name = "姓名3") @Excel(name = "姓名3")
private String name3; private String name3;
/** 出生日期3 */
@JsonFormat(pattern = "yyyy-MM-dd")
@Excel(name = "出生日期3", width = 30, dateFormat = "yyyy-MM-dd")
private Date birthDate3;
/** 性别3 */ /** 性别3 */
@Excel(name = "性别3") @Excel(name = "性别3")
private String sex3; private String sex3;
@ -108,6 +124,11 @@ public class DaZqz extends BaseEntity
@Excel(name = "性别4") @Excel(name = "性别4")
private String sex4; private String sex4;
/** 出生日期4 */
@JsonFormat(pattern = "yyyy-MM-dd")
@Excel(name = "出生日期4", width = 30, dateFormat = "yyyy-MM-dd")
private Date birthDate4;
/** 身份证号4 */ /** 身份证号4 */
@Excel(name = "身份证号4") @Excel(name = "身份证号4")
private String cardId4; private String cardId4;
@ -173,354 +194,390 @@ public class DaZqz extends BaseEntity
@Excel(name = "审核原由") @Excel(name = "审核原由")
private String auditReason; private String auditReason;
public void setId(Long id) public void setId(Long id)
{ {
this.id = id; this.id = id;
} }
public Long getId() public Long getId()
{ {
return id; return id;
} }
public void setYwType(String ywType) public void setYwType(String ywType)
{ {
this.ywType = ywType; this.ywType = ywType;
} }
public String getYwType() public String getYwType()
{ {
return ywType; return ywType;
} }
public void setMuId(Long muId) public void setMuId(Long muId)
{ {
this.muId = muId; this.muId = muId;
} }
public Long getMuId() public Long getMuId()
{ {
return muId; return muId;
} }
public void setNum(String num) public void setNum(String num)
{ {
this.num = num; this.num = num;
} }
public String getNum() public String getNum()
{ {
return num; return num;
} }
public void setName(String name) public void setName(String name)
{ {
this.name = name; this.name = name;
} }
public String getName() public String getName()
{ {
return name; return name;
} }
public void setCardId(String cardId) public void setCardId(String cardId)
{ {
this.cardId = cardId; this.cardId = cardId;
} }
public String getCardId() public String getCardId()
{ {
return cardId; return cardId;
} }
public void setAddress(String address) public void setAddress(String address)
{ {
this.address = address; this.address = address;
} }
public String getAddress() public String getAddress()
{ {
return address; return address;
} }
public void setDjJg(String djJg) public void setDjJg(String djJg)
{ {
this.djJg = djJg; this.djJg = djJg;
} }
public String getDjJg() public String getDjJg()
{ {
return djJg; return djJg;
} }
public void setRelation1(String relation1) public void setRelation1(String relation1)
{ {
this.relation1 = relation1; this.relation1 = relation1;
} }
public String getRelation1() public String getRelation1()
{ {
return relation1; return relation1;
} }
public void setName1(String name1) public void setName1(String name1)
{ {
this.name1 = name1; this.name1 = name1;
} }
public String getName1() public String getName1()
{ {
return name1; return name1;
} }
public void setSex1(String sex1) public void setSex1(String sex1)
{ {
this.sex1 = sex1; this.sex1 = sex1;
} }
public String getSex1() public String getSex1()
{ {
return sex1; return sex1;
} }
public void setCardId1(String cardId1) public void setBirthDate1(Date birthDate1)
{
this.birthDate1 = birthDate1;
}
public Date getBirthDate1()
{
return birthDate1;
}
public void setCardId1(String cardId1)
{ {
this.cardId1 = cardId1; this.cardId1 = cardId1;
} }
public String getCardId1() public String getCardId1()
{ {
return cardId1; return cardId1;
} }
public void setRelation2(String relation2) public void setRelation2(String relation2)
{ {
this.relation2 = relation2; this.relation2 = relation2;
} }
public String getRelation2() public String getRelation2()
{ {
return relation2; return relation2;
} }
public void setName2(String name2) public void setName2(String name2)
{ {
this.name2 = name2; this.name2 = name2;
} }
public String getName2() public String getName2()
{ {
return name2; return name2;
} }
public void setSex2(String sex2) public void setSex2(String sex2)
{ {
this.sex2 = sex2; this.sex2 = sex2;
} }
public String getSex2() public String getSex2()
{ {
return sex2; return sex2;
} }
public void setCardId2(String cardId2) public void setBirthDate2(Date birthDate2)
{
this.birthDate2 = birthDate2;
}
public Date getBirthDate2()
{
return birthDate2;
}
public void setCardId2(String cardId2)
{ {
this.cardId2 = cardId2; this.cardId2 = cardId2;
} }
public String getCardId2() public String getCardId2()
{ {
return cardId2; return cardId2;
} }
public void setRelation3(String relation3) public void setRelation3(String relation3)
{ {
this.relation3 = relation3; this.relation3 = relation3;
} }
public String getRelation3() public String getRelation3()
{ {
return relation3; return relation3;
} }
public void setName3(String name3) public void setName3(String name3)
{ {
this.name3 = name3; this.name3 = name3;
} }
public String getName3() public String getName3()
{ {
return name3; return name3;
} }
public void setSex3(String sex3) public void setBirthDate3(Date birthDate3)
{
this.birthDate3 = birthDate3;
}
public Date getBirthDate3()
{
return birthDate3;
}
public void setSex3(String sex3)
{ {
this.sex3 = sex3; this.sex3 = sex3;
} }
public String getSex3() public String getSex3()
{ {
return sex3; return sex3;
} }
public void setCardId3(String cardId3) public void setCardId3(String cardId3)
{ {
this.cardId3 = cardId3; this.cardId3 = cardId3;
} }
public String getCardId3() public String getCardId3()
{ {
return cardId3; return cardId3;
} }
public void setRelation4(String relation4) public void setRelation4(String relation4)
{ {
this.relation4 = relation4; this.relation4 = relation4;
} }
public String getRelation4() public String getRelation4()
{ {
return relation4; return relation4;
} }
public void setName4(String name4) public void setName4(String name4)
{ {
this.name4 = name4; this.name4 = name4;
} }
public String getName4() public String getName4()
{ {
return name4; return name4;
} }
public void setSex4(String sex4) public void setSex4(String sex4)
{ {
this.sex4 = sex4; this.sex4 = sex4;
} }
public String getSex4() public String getSex4()
{ {
return sex4; return sex4;
} }
public void setCardId4(String cardId4) public void setBirthDate4(Date birthDate4)
{
this.birthDate4 = birthDate4;
}
public Date getBirthDate4()
{
return birthDate4;
}
public void setCardId4(String cardId4)
{ {
this.cardId4 = cardId4; this.cardId4 = cardId4;
} }
public String getCardId4() public String getCardId4()
{ {
return cardId4; return cardId4;
} }
public void setFwdw(String fwdw) public void setFwdw(String fwdw)
{ {
this.fwdw = fwdw; this.fwdw = fwdw;
} }
public String getFwdw() public String getFwdw()
{ {
return fwdw; return fwdw;
} }
public void setQrAddress(String qrAddress) public void setQrAddress(String qrAddress)
{ {
this.qrAddress = qrAddress; this.qrAddress = qrAddress;
} }
public String getQrAddress() public String getQrAddress()
{ {
return qrAddress; return qrAddress;
} }
public void setZqReason(String zqReason) public void setZqReason(String zqReason)
{ {
this.zqReason = zqReason; this.zqReason = zqReason;
} }
public String getZqReason() public String getZqReason()
{ {
return zqReason; return zqReason;
} }
public void setPzjg(String pzjg) public void setPzjg(String pzjg)
{ {
this.pzjg = pzjg; this.pzjg = pzjg;
} }
public String getPzjg() public String getPzjg()
{ {
return pzjg; return pzjg;
} }
public void setCbr(String cbr) public void setCbr(String cbr)
{ {
this.cbr = cbr; this.cbr = cbr;
} }
public String getCbr() public String getCbr()
{ {
return cbr; return cbr;
} }
public void setQfDate(Date qfDate) public void setQfDate(Date qfDate)
{ {
this.qfDate = qfDate; this.qfDate = qfDate;
} }
public Date getQfDate() public Date getQfDate()
{ {
return qfDate; return qfDate;
} }
public void setPicIds(String picIds) public void setPicIds(String picIds)
{ {
this.picIds = picIds; this.picIds = picIds;
} }
public String getPicIds() public String getPicIds()
{ {
return picIds; return picIds;
} }
public void setPictures(String pictures) public void setPictures(String pictures)
{ {
this.pictures = pictures; this.pictures = pictures;
} }
public String getPictures() public String getPictures()
{ {
return pictures; return pictures;
} }
public void setAllPicIds(String allPicIds) public void setAllPicIds(String allPicIds)
{ {
this.allPicIds = allPicIds; this.allPicIds = allPicIds;
} }
public String getAllPicIds() public String getAllPicIds()
{ {
return allPicIds; return allPicIds;
} }
public void setAllPics(String allPics) public void setAllPics(String allPics)
{ {
this.allPics = allPics; this.allPics = allPics;
} }
public String getAllPics() public String getAllPics()
{ {
return allPics; return allPics;
} }
public void setErrorCorrect(String errorCorrect) public void setErrorCorrect(String errorCorrect)
{ {
this.errorCorrect = errorCorrect; this.errorCorrect = errorCorrect;
} }
public String getErrorCorrect() public String getErrorCorrect()
{ {
return errorCorrect; return errorCorrect;
} }
public void setAuditStatus(String auditStatus) public void setAuditStatus(String auditStatus)
{ {
this.auditStatus = auditStatus; this.auditStatus = auditStatus;
} }
public String getAuditStatus() public String getAuditStatus()
{ {
return auditStatus; return auditStatus;
} }
public void setAuditName(String auditName) public void setAuditName(String auditName)
{ {
this.auditName = auditName; this.auditName = auditName;
} }
public String getAuditName() public String getAuditName()
{ {
return auditName; return auditName;
} }
public void setAuditResult(String auditResult) public void setAuditResult(String auditResult)
{ {
this.auditResult = auditResult; this.auditResult = auditResult;
} }
public String getAuditResult() public String getAuditResult()
{ {
return auditResult; return auditResult;
} }
public void setAuditReason(String auditReason) public void setAuditReason(String auditReason)
{ {
this.auditReason = auditReason; this.auditReason = auditReason;
} }
public String getAuditReason() public String getAuditReason()
{ {
return auditReason; return auditReason;
} }
@ -528,50 +585,54 @@ public class DaZqz extends BaseEntity
@Override @Override
public String toString() { public String toString() {
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
.append("id", getId()) .append("id", getId())
.append("ywType", getYwType()) .append("ywType", getYwType())
.append("muId", getMuId()) .append("muId", getMuId())
.append("num", getNum()) .append("num", getNum())
.append("name", getName()) .append("name", getName())
.append("cardId", getCardId()) .append("cardId", getCardId())
.append("address", getAddress()) .append("address", getAddress())
.append("djJg", getDjJg()) .append("djJg", getDjJg())
.append("relation1", getRelation1()) .append("relation1", getRelation1())
.append("name1", getName1()) .append("name1", getName1())
.append("sex1", getSex1()) .append("sex1", getSex1())
.append("cardId1", getCardId1()) .append("birthDate1", getBirthDate1())
.append("relation2", getRelation2()) .append("cardId1", getCardId1())
.append("name2", getName2()) .append("relation2", getRelation2())
.append("sex2", getSex2()) .append("name2", getName2())
.append("cardId2", getCardId2()) .append("sex2", getSex2())
.append("relation3", getRelation3()) .append("birthDate2", getBirthDate2())
.append("name3", getName3()) .append("cardId2", getCardId2())
.append("sex3", getSex3()) .append("relation3", getRelation3())
.append("cardId3", getCardId3()) .append("name3", getName3())
.append("relation4", getRelation4()) .append("birthDate3", getBirthDate3())
.append("name4", getName4()) .append("sex3", getSex3())
.append("sex4", getSex4()) .append("cardId3", getCardId3())
.append("cardId4", getCardId4()) .append("relation4", getRelation4())
.append("fwdw", getFwdw()) .append("name4", getName4())
.append("qrAddress", getQrAddress()) .append("sex4", getSex4())
.append("zqReason", getZqReason()) .append("birthDate4", getBirthDate4())
.append("pzjg", getPzjg()) .append("cardId4", getCardId4())
.append("cbr", getCbr()) .append("fwdw", getFwdw())
.append("qfDate", getQfDate()) .append("qrAddress", getQrAddress())
.append("picIds", getPicIds()) .append("zqReason", getZqReason())
.append("pictures", getPictures()) .append("pzjg", getPzjg())
.append("allPicIds", getAllPicIds()) .append("cbr", getCbr())
.append("allPics", getAllPics()) .append("qfDate", getQfDate())
.append("errorCorrect", getErrorCorrect()) .append("picIds", getPicIds())
.append("auditStatus", getAuditStatus()) .append("pictures", getPictures())
.append("auditName", getAuditName()) .append("allPicIds", getAllPicIds())
.append("auditResult", getAuditResult()) .append("allPics", getAllPics())
.append("auditReason", getAuditReason()) .append("errorCorrect", getErrorCorrect())
.append("remark", getRemark()) .append("auditStatus", getAuditStatus())
.append("createBy", getCreateBy()) .append("auditName", getAuditName())
.append("createTime", getCreateTime()) .append("auditResult", getAuditResult())
.append("updateBy", getUpdateBy()) .append("auditReason", getAuditReason())
.append("updateTime", getUpdateTime()) .append("remark", getRemark())
.toString(); .append("createBy", getCreateBy())
.append("createTime", getCreateTime())
.append("updateBy", getUpdateBy())
.append("updateTime", getUpdateTime())
.toString();
} }
} }

@ -3,7 +3,7 @@
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd"> "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.da.dangan.mapper.DaZqzMapper"> <mapper namespace="com.da.dangan.mapper.DaZqzMapper">
<resultMap type="DaZqz" id="DaZqzResult"> <resultMap type="DaZqz" id="DaZqzResult">
<result property="id" column="id" /> <result property="id" column="id" />
<result property="ywType" column="yw_type" /> <result property="ywType" column="yw_type" />
@ -16,18 +16,22 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<result property="relation1" column="relation1" /> <result property="relation1" column="relation1" />
<result property="name1" column="name1" /> <result property="name1" column="name1" />
<result property="sex1" column="sex1" /> <result property="sex1" column="sex1" />
<result property="birthDate1" column="birth_date1" />
<result property="cardId1" column="card_id1" /> <result property="cardId1" column="card_id1" />
<result property="relation2" column="relation2" /> <result property="relation2" column="relation2" />
<result property="name2" column="name2" /> <result property="name2" column="name2" />
<result property="sex2" column="sex2" /> <result property="sex2" column="sex2" />
<result property="birthDate2" column="birth_date2" />
<result property="cardId2" column="card_id2" /> <result property="cardId2" column="card_id2" />
<result property="relation3" column="relation3" /> <result property="relation3" column="relation3" />
<result property="name3" column="name3" /> <result property="name3" column="name3" />
<result property="birthDate3" column="birth_date3" />
<result property="sex3" column="sex3" /> <result property="sex3" column="sex3" />
<result property="cardId3" column="card_id3" /> <result property="cardId3" column="card_id3" />
<result property="relation4" column="relation4" /> <result property="relation4" column="relation4" />
<result property="name4" column="name4" /> <result property="name4" column="name4" />
<result property="sex4" column="sex4" /> <result property="sex4" column="sex4" />
<result property="birthDate4" column="birth_date4" />
<result property="cardId4" column="card_id4" /> <result property="cardId4" column="card_id4" />
<result property="fwdw" column="fwdw" /> <result property="fwdw" column="fwdw" />
<result property="qrAddress" column="qr_address" /> <result property="qrAddress" column="qr_address" />
@ -52,7 +56,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</resultMap> </resultMap>
<sql id="selectDaZqzVo"> <sql id="selectDaZqzVo">
select id, yw_type, mu_id, num, name, card_id, address, dj_jg, relation1, name1, sex1, card_id1, relation2, name2, sex2, card_id2, relation3, name3, sex3, card_id3, relation4, name4, sex4, card_id4, fwdw, qr_address, zq_reason, pzjg, cbr, qf_date, pic_ids, pictures, all_pic_ids, all_pics, error_correct, audit_status, audit_name, audit_result, audit_reason, remark, create_by, create_time, update_by, update_time from da_zqz select id, yw_type, mu_id, num, name, card_id, address, dj_jg, relation1, name1, sex1, birth_date1, card_id1, relation2, name2, sex2, birth_date2, card_id2, relation3, name3, birth_date3, sex3, card_id3, relation4, name4, sex4, birth_date4, card_id4, fwdw, qr_address, zq_reason, pzjg, cbr, qf_date, pic_ids, pictures, all_pic_ids, all_pics, error_correct, audit_status, audit_name, audit_result, audit_reason, remark, create_by, create_time, update_by, update_time from da_zqz
</sql> </sql>
<select id="selectDaZqzList" parameterType="DaZqz" resultMap="DaZqzResult"> <select id="selectDaZqzList" parameterType="DaZqz" resultMap="DaZqzResult">
@ -75,18 +79,22 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="relation1 != null and relation1 != ''"> and relation1 = #{relation1}</if> <if test="relation1 != null and relation1 != ''"> and relation1 = #{relation1}</if>
<if test="name1 != null and name1 != ''"> and name1 = #{name1}</if> <if test="name1 != null and name1 != ''"> and name1 = #{name1}</if>
<if test="sex1 != null and sex1 != ''"> and sex1 = #{sex1}</if> <if test="sex1 != null and sex1 != ''"> and sex1 = #{sex1}</if>
<if test="birthDate1 != null "> and birth_date1 = #{birthDate1}</if>
<if test="cardId1 != null and cardId1 != ''"> and card_id1 = #{cardId1}</if> <if test="cardId1 != null and cardId1 != ''"> and card_id1 = #{cardId1}</if>
<if test="relation2 != null and relation2 != ''"> and relation2 = #{relation2}</if> <if test="relation2 != null and relation2 != ''"> and relation2 = #{relation2}</if>
<if test="name2 != null and name2 != ''"> and name2 = #{name2}</if> <if test="name2 != null and name2 != ''"> and name2 = #{name2}</if>
<if test="sex2 != null and sex2 != ''"> and sex2 = #{sex2}</if> <if test="sex2 != null and sex2 != ''"> and sex2 = #{sex2}</if>
<if test="birthDate2 != null "> and birth_date2 = #{birthDate2}</if>
<if test="cardId2 != null and cardId2 != ''"> and card_id2 = #{cardId2}</if> <if test="cardId2 != null and cardId2 != ''"> and card_id2 = #{cardId2}</if>
<if test="relation3 != null and relation3 != ''"> and relation3 = #{relation3}</if> <if test="relation3 != null and relation3 != ''"> and relation3 = #{relation3}</if>
<if test="name3 != null and name3 != ''"> and name3 = #{name3}</if> <if test="name3 != null and name3 != ''"> and name3 = #{name3}</if>
<if test="birthDate3 != null "> and birth_date3 = #{birthDate3}</if>
<if test="sex3 != null and sex3 != ''"> and sex3 = #{sex3}</if> <if test="sex3 != null and sex3 != ''"> and sex3 = #{sex3}</if>
<if test="cardId3 != null and cardId3 != ''"> and card_id3 = #{cardId3}</if> <if test="cardId3 != null and cardId3 != ''"> and card_id3 = #{cardId3}</if>
<if test="relation4 != null and relation4 != ''"> and relation4 = #{relation4}</if> <if test="relation4 != null and relation4 != ''"> and relation4 = #{relation4}</if>
<if test="name4 != null and name4 != ''"> and name4 = #{name4}</if> <if test="name4 != null and name4 != ''"> and name4 = #{name4}</if>
<if test="sex4 != null and sex4 != ''"> and sex4 = #{sex4}</if> <if test="sex4 != null and sex4 != ''"> and sex4 = #{sex4}</if>
<if test="birthDate4 != null "> and birth_date4 = #{birthDate4}</if>
<if test="cardId4 != null and cardId4 != ''"> and card_id4 = #{cardId4}</if> <if test="cardId4 != null and cardId4 != ''"> and card_id4 = #{cardId4}</if>
<if test="fwdw != null and fwdw != ''"> and fwdw = #{fwdw}</if> <if test="fwdw != null and fwdw != ''"> and fwdw = #{fwdw}</if>
<if test="qrAddress != null and qrAddress != ''"> and qr_address = #{qrAddress}</if> <if test="qrAddress != null and qrAddress != ''"> and qr_address = #{qrAddress}</if>
@ -124,18 +132,22 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="relation1 != null">relation1,</if> <if test="relation1 != null">relation1,</if>
<if test="name1 != null">name1,</if> <if test="name1 != null">name1,</if>
<if test="sex1 != null">sex1,</if> <if test="sex1 != null">sex1,</if>
<if test="birthDate1 != null">birth_date1,</if>
<if test="cardId1 != null">card_id1,</if> <if test="cardId1 != null">card_id1,</if>
<if test="relation2 != null">relation2,</if> <if test="relation2 != null">relation2,</if>
<if test="name2 != null">name2,</if> <if test="name2 != null">name2,</if>
<if test="sex2 != null">sex2,</if> <if test="sex2 != null">sex2,</if>
<if test="birthDate2 != null">birth_date2,</if>
<if test="cardId2 != null">card_id2,</if> <if test="cardId2 != null">card_id2,</if>
<if test="relation3 != null">relation3,</if> <if test="relation3 != null">relation3,</if>
<if test="name3 != null">name3,</if> <if test="name3 != null">name3,</if>
<if test="birthDate3 != null">birth_date3,</if>
<if test="sex3 != null">sex3,</if> <if test="sex3 != null">sex3,</if>
<if test="cardId3 != null">card_id3,</if> <if test="cardId3 != null">card_id3,</if>
<if test="relation4 != null">relation4,</if> <if test="relation4 != null">relation4,</if>
<if test="name4 != null">name4,</if> <if test="name4 != null">name4,</if>
<if test="sex4 != null">sex4,</if> <if test="sex4 != null">sex4,</if>
<if test="birthDate4 != null">birth_date4,</if>
<if test="cardId4 != null">card_id4,</if> <if test="cardId4 != null">card_id4,</if>
<if test="fwdw != null">fwdw,</if> <if test="fwdw != null">fwdw,</if>
<if test="qrAddress != null">qr_address,</if> <if test="qrAddress != null">qr_address,</if>
@ -157,7 +169,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="createTime != null">create_time,</if> <if test="createTime != null">create_time,</if>
<if test="updateBy != null">update_by,</if> <if test="updateBy != null">update_by,</if>
<if test="updateTime != null">update_time,</if> <if test="updateTime != null">update_time,</if>
</trim> </trim>
<trim prefix="values (" suffix=")" suffixOverrides=","> <trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="ywType != null">#{ywType},</if> <if test="ywType != null">#{ywType},</if>
<if test="muId != null">#{muId},</if> <if test="muId != null">#{muId},</if>
@ -169,18 +181,22 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="relation1 != null">#{relation1},</if> <if test="relation1 != null">#{relation1},</if>
<if test="name1 != null">#{name1},</if> <if test="name1 != null">#{name1},</if>
<if test="sex1 != null">#{sex1},</if> <if test="sex1 != null">#{sex1},</if>
<if test="birthDate1 != null">#{birthDate1},</if>
<if test="cardId1 != null">#{cardId1},</if> <if test="cardId1 != null">#{cardId1},</if>
<if test="relation2 != null">#{relation2},</if> <if test="relation2 != null">#{relation2},</if>
<if test="name2 != null">#{name2},</if> <if test="name2 != null">#{name2},</if>
<if test="sex2 != null">#{sex2},</if> <if test="sex2 != null">#{sex2},</if>
<if test="birthDate2 != null">#{birthDate2},</if>
<if test="cardId2 != null">#{cardId2},</if> <if test="cardId2 != null">#{cardId2},</if>
<if test="relation3 != null">#{relation3},</if> <if test="relation3 != null">#{relation3},</if>
<if test="name3 != null">#{name3},</if> <if test="name3 != null">#{name3},</if>
<if test="birthDate3 != null">#{birthDate3},</if>
<if test="sex3 != null">#{sex3},</if> <if test="sex3 != null">#{sex3},</if>
<if test="cardId3 != null">#{cardId3},</if> <if test="cardId3 != null">#{cardId3},</if>
<if test="relation4 != null">#{relation4},</if> <if test="relation4 != null">#{relation4},</if>
<if test="name4 != null">#{name4},</if> <if test="name4 != null">#{name4},</if>
<if test="sex4 != null">#{sex4},</if> <if test="sex4 != null">#{sex4},</if>
<if test="birthDate4 != null">#{birthDate4},</if>
<if test="cardId4 != null">#{cardId4},</if> <if test="cardId4 != null">#{cardId4},</if>
<if test="fwdw != null">#{fwdw},</if> <if test="fwdw != null">#{fwdw},</if>
<if test="qrAddress != null">#{qrAddress},</if> <if test="qrAddress != null">#{qrAddress},</if>
@ -202,7 +218,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="createTime != null">#{createTime},</if> <if test="createTime != null">#{createTime},</if>
<if test="updateBy != null">#{updateBy},</if> <if test="updateBy != null">#{updateBy},</if>
<if test="updateTime != null">#{updateTime},</if> <if test="updateTime != null">#{updateTime},</if>
</trim> </trim>
</insert> </insert>
<update id="updateDaZqz" parameterType="DaZqz"> <update id="updateDaZqz" parameterType="DaZqz">
@ -218,18 +234,22 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="relation1 != null">relation1 = #{relation1},</if> <if test="relation1 != null">relation1 = #{relation1},</if>
<if test="name1 != null">name1 = #{name1},</if> <if test="name1 != null">name1 = #{name1},</if>
<if test="sex1 != null">sex1 = #{sex1},</if> <if test="sex1 != null">sex1 = #{sex1},</if>
<if test="birthDate1 != null">birth_date1 = #{birthDate1},</if>
<if test="cardId1 != null">card_id1 = #{cardId1},</if> <if test="cardId1 != null">card_id1 = #{cardId1},</if>
<if test="relation2 != null">relation2 = #{relation2},</if> <if test="relation2 != null">relation2 = #{relation2},</if>
<if test="name2 != null">name2 = #{name2},</if> <if test="name2 != null">name2 = #{name2},</if>
<if test="sex2 != null">sex2 = #{sex2},</if> <if test="sex2 != null">sex2 = #{sex2},</if>
<if test="birthDate2 != null">birth_date2 = #{birthDate2},</if>
<if test="cardId2 != null">card_id2 = #{cardId2},</if> <if test="cardId2 != null">card_id2 = #{cardId2},</if>
<if test="relation3 != null">relation3 = #{relation3},</if> <if test="relation3 != null">relation3 = #{relation3},</if>
<if test="name3 != null">name3 = #{name3},</if> <if test="name3 != null">name3 = #{name3},</if>
<if test="birthDate3 != null">birth_date3 = #{birthDate3},</if>
<if test="sex3 != null">sex3 = #{sex3},</if> <if test="sex3 != null">sex3 = #{sex3},</if>
<if test="cardId3 != null">card_id3 = #{cardId3},</if> <if test="cardId3 != null">card_id3 = #{cardId3},</if>
<if test="relation4 != null">relation4 = #{relation4},</if> <if test="relation4 != null">relation4 = #{relation4},</if>
<if test="name4 != null">name4 = #{name4},</if> <if test="name4 != null">name4 = #{name4},</if>
<if test="sex4 != null">sex4 = #{sex4},</if> <if test="sex4 != null">sex4 = #{sex4},</if>
<if test="birthDate4 != null">birth_date4 = #{birthDate4},</if>
<if test="cardId4 != null">card_id4 = #{cardId4},</if> <if test="cardId4 != null">card_id4 = #{cardId4},</if>
<if test="fwdw != null">fwdw = #{fwdw},</if> <if test="fwdw != null">fwdw = #{fwdw},</if>
<if test="qrAddress != null">qr_address = #{qrAddress},</if> <if test="qrAddress != null">qr_address = #{qrAddress},</if>

Loading…
Cancel
Save