You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
561 lines
11 KiB
561 lines
11 KiB
package com.da.dangan.domain;
|
|
|
|
import com.da.common.annotation.Excel;
|
|
import com.da.common.core.domain.BaseEntity;
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
|
|
|
/**
|
|
* 出生登记对象 da_birth_dj
|
|
*
|
|
* @author hs
|
|
* @date 2024-06-05
|
|
*/
|
|
public class DaBirthDj extends BaseEntity {
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
/**
|
|
* id
|
|
*/
|
|
private Long id;
|
|
|
|
/** 任务id */
|
|
@Excel(name = "任务id")
|
|
private Long taskId;
|
|
|
|
/**
|
|
* 业务类型(字典)
|
|
*/
|
|
//@Excel(name = "业务类型", dictType = "yw_type")
|
|
private String ywType;
|
|
|
|
/**
|
|
* 目录id
|
|
*/
|
|
@Excel(name = "目录id")
|
|
private Long muId;
|
|
|
|
/**
|
|
* 档案目录路径
|
|
*/
|
|
@Excel(name = "档案目录路径")
|
|
private String muPath;
|
|
|
|
public String getMuPath() {
|
|
return muPath;
|
|
}
|
|
|
|
public void setMuPath(String muPath) {
|
|
this.muPath = muPath;
|
|
}
|
|
|
|
/**
|
|
* 出生证编号
|
|
*/
|
|
@Excel(name = "出生证编号")
|
|
private String birthNum;
|
|
|
|
/**
|
|
* 婴儿姓名
|
|
*/
|
|
@Excel(name = "婴儿姓名")
|
|
private String name;
|
|
|
|
/**
|
|
* 出生时间
|
|
*/
|
|
@Excel(name = "出生时间")
|
|
private String birthday;
|
|
|
|
/**
|
|
* 性别
|
|
*/
|
|
@Excel(name = "性别")
|
|
private String sex;
|
|
|
|
/**
|
|
* 出生地点
|
|
*/
|
|
@Excel(name = "出生地点")
|
|
private String bornAddress;
|
|
|
|
/**
|
|
* 母亲姓名
|
|
*/
|
|
@Excel(name = "母亲姓名")
|
|
private String mName;
|
|
|
|
/**
|
|
* 母亲年龄
|
|
*/
|
|
@Excel(name = "母亲年龄")
|
|
private String mAge;
|
|
|
|
/**
|
|
* 母亲国籍
|
|
*/
|
|
@Excel(name = "母亲国籍")
|
|
private String mGj;
|
|
|
|
/**
|
|
* 母亲民族
|
|
*/
|
|
@Excel(name = "母亲民族")
|
|
private String mNation;
|
|
|
|
/**
|
|
* 母亲身份证号
|
|
*/
|
|
@Excel(name = "母亲身份证号")
|
|
private String mCardId;
|
|
|
|
/**
|
|
* 父亲姓名
|
|
*/
|
|
@Excel(name = "父亲姓名")
|
|
private String fName;
|
|
|
|
/**
|
|
* 父亲年龄
|
|
*/
|
|
@Excel(name = "父亲年龄")
|
|
private String fAge;
|
|
|
|
/**
|
|
* 父亲国籍
|
|
*/
|
|
@Excel(name = "父亲国籍")
|
|
private String fGj;
|
|
|
|
/**
|
|
* 父亲民族
|
|
*/
|
|
@Excel(name = "父亲民族")
|
|
private String fNation;
|
|
|
|
/**
|
|
* 父亲身份证号
|
|
*/
|
|
@Excel(name = "父亲身份证号")
|
|
private String fCardId;
|
|
|
|
/**
|
|
* 家庭住址
|
|
*/
|
|
@Excel(name = "家庭住址")
|
|
private String homeAddress;
|
|
|
|
/**
|
|
* 婴儿母亲签字
|
|
*/
|
|
@Excel(name = "婴儿母亲签字")
|
|
private String momSign;
|
|
|
|
/**
|
|
* 接生人员签字
|
|
*/
|
|
@Excel(name = "接生人员签字")
|
|
private String jsrySign;
|
|
|
|
/**
|
|
* 接生单位
|
|
*/
|
|
@Excel(name = "接生单位")
|
|
private String jsUnit;
|
|
|
|
/**
|
|
* 出生登记类型(字典)
|
|
*/
|
|
// @Excel(name = "出生登记类型(字典)")
|
|
private String djType;
|
|
|
|
/**
|
|
* 识别图片id
|
|
*/
|
|
@Excel(name = "识别图片id")
|
|
private String picIds;
|
|
|
|
/**
|
|
* 识别图片
|
|
*/
|
|
@Excel(name = "识别图片")
|
|
private String pictures;
|
|
|
|
/**
|
|
* 相关图片id
|
|
*/
|
|
@Excel(name = "相关图片id")
|
|
private String allPicIds;
|
|
|
|
/**
|
|
* 相关图片
|
|
*/
|
|
@Excel(name = "相关图片")
|
|
private String allPics;
|
|
|
|
/**
|
|
* 是否纠错(字典0否1是)
|
|
*/
|
|
@Excel(name = "是否纠错", dictType = "error_correct")
|
|
private String errorCorrect;
|
|
|
|
/**
|
|
* 审核状态(字典)
|
|
*/
|
|
@Excel(name = "审核状态", dictType = "audit_status")
|
|
private String auditStatus;
|
|
|
|
/**
|
|
* 审核人
|
|
*/
|
|
@Excel(name = "审核人")
|
|
private String auditName;
|
|
|
|
/**
|
|
* 审核结果
|
|
*/
|
|
@Excel(name = "审核结果")
|
|
private String auditResult;
|
|
|
|
/**
|
|
* 审核原由
|
|
*/
|
|
@Excel(name = "审核原由")
|
|
private String auditReason;
|
|
|
|
/**
|
|
* 当前用户id
|
|
*/
|
|
private Long userId;
|
|
|
|
/**
|
|
* flag=0查看全部,1排除姓名为空的记录
|
|
*/
|
|
private String flag;
|
|
|
|
public String getFlag() {
|
|
return flag;
|
|
}
|
|
|
|
public void setFlag(String flag) {
|
|
this.flag = flag;
|
|
}
|
|
|
|
public Long getUserId() {
|
|
return userId;
|
|
}
|
|
|
|
public void setUserId(Long userId) {
|
|
this.userId = userId;
|
|
}
|
|
|
|
public void setId(Long id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public Long getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setYwType(String ywType) {
|
|
this.ywType = ywType;
|
|
}
|
|
|
|
public String getYwType() {
|
|
return ywType;
|
|
}
|
|
|
|
public void setMuId(Long muId) {
|
|
this.muId = muId;
|
|
}
|
|
|
|
public Long getMuId() {
|
|
return muId;
|
|
}
|
|
|
|
public void setBirthNum(String birthNum) {
|
|
this.birthNum = birthNum;
|
|
}
|
|
|
|
public String getBirthNum() {
|
|
return birthNum;
|
|
}
|
|
|
|
public void setName(String name) {
|
|
this.name = name;
|
|
}
|
|
|
|
public String getName() {
|
|
return name;
|
|
}
|
|
|
|
public String getBirthday() {
|
|
return birthday;
|
|
}
|
|
|
|
public void setBirthday(String birthday) {
|
|
this.birthday = birthday;
|
|
}
|
|
|
|
public void setSex(String sex) {
|
|
this.sex = sex;
|
|
}
|
|
|
|
public String getSex() {
|
|
return sex;
|
|
}
|
|
|
|
public void setBornAddress(String bornAddress) {
|
|
this.bornAddress = bornAddress;
|
|
}
|
|
|
|
public String getBornAddress() {
|
|
return bornAddress;
|
|
}
|
|
|
|
public void setmName(String mName) {
|
|
this.mName = mName;
|
|
}
|
|
|
|
public String getmName() {
|
|
return mName;
|
|
}
|
|
|
|
public void setmAge(String mAge) {
|
|
this.mAge = mAge;
|
|
}
|
|
|
|
public String getmAge() {
|
|
return mAge;
|
|
}
|
|
|
|
public void setmGj(String mGj) {
|
|
this.mGj = mGj;
|
|
}
|
|
|
|
public String getmGj() {
|
|
return mGj;
|
|
}
|
|
|
|
public void setmNation(String mNation) {
|
|
this.mNation = mNation;
|
|
}
|
|
|
|
public String getmNation() {
|
|
return mNation;
|
|
}
|
|
|
|
public void setmCardId(String mCardId) {
|
|
this.mCardId = mCardId;
|
|
}
|
|
|
|
public String getmCardId() {
|
|
return mCardId;
|
|
}
|
|
|
|
public void setfName(String fName) {
|
|
this.fName = fName;
|
|
}
|
|
|
|
public String getfName() {
|
|
return fName;
|
|
}
|
|
|
|
public void setfAge(String fAge) {
|
|
this.fAge = fAge;
|
|
}
|
|
|
|
public String getfAge() {
|
|
return fAge;
|
|
}
|
|
|
|
public void setfGj(String fGj) {
|
|
this.fGj = fGj;
|
|
}
|
|
|
|
public String getfGj() {
|
|
return fGj;
|
|
}
|
|
|
|
public void setfNation(String fNation) {
|
|
this.fNation = fNation;
|
|
}
|
|
|
|
public String getfNation() {
|
|
return fNation;
|
|
}
|
|
|
|
public void setfCardId(String fCardId) {
|
|
this.fCardId = fCardId;
|
|
}
|
|
|
|
public String getfCardId() {
|
|
return fCardId;
|
|
}
|
|
|
|
public void setHomeAddress(String homeAddress) {
|
|
this.homeAddress = homeAddress;
|
|
}
|
|
|
|
public String getHomeAddress() {
|
|
return homeAddress;
|
|
}
|
|
|
|
public void setMomSign(String momSign) {
|
|
this.momSign = momSign;
|
|
}
|
|
|
|
public String getMomSign() {
|
|
return momSign;
|
|
}
|
|
|
|
public void setJsrySign(String jsrySign) {
|
|
this.jsrySign = jsrySign;
|
|
}
|
|
|
|
public String getJsrySign() {
|
|
return jsrySign;
|
|
}
|
|
|
|
public void setJsUnit(String jsUnit) {
|
|
this.jsUnit = jsUnit;
|
|
}
|
|
|
|
public String getJsUnit() {
|
|
return jsUnit;
|
|
}
|
|
|
|
public void setDjType(String djType) {
|
|
this.djType = djType;
|
|
}
|
|
|
|
public String getDjType() {
|
|
return djType;
|
|
}
|
|
|
|
public void setPicIds(String picIds) {
|
|
this.picIds = picIds;
|
|
}
|
|
|
|
public String getPicIds() {
|
|
return picIds;
|
|
}
|
|
|
|
public void setPictures(String pictures) {
|
|
this.pictures = pictures;
|
|
}
|
|
|
|
public String getPictures() {
|
|
return pictures;
|
|
}
|
|
|
|
public void setAllPicIds(String allPicIds) {
|
|
this.allPicIds = allPicIds;
|
|
}
|
|
|
|
public String getAllPicIds() {
|
|
return allPicIds;
|
|
}
|
|
|
|
public void setAllPics(String allPics) {
|
|
this.allPics = allPics;
|
|
}
|
|
|
|
public String getAllPics() {
|
|
return allPics;
|
|
}
|
|
|
|
public void setErrorCorrect(String errorCorrect) {
|
|
this.errorCorrect = errorCorrect;
|
|
}
|
|
|
|
public String getErrorCorrect() {
|
|
return errorCorrect;
|
|
}
|
|
|
|
public void setAuditStatus(String auditStatus) {
|
|
this.auditStatus = auditStatus;
|
|
}
|
|
|
|
public String getAuditStatus() {
|
|
return auditStatus;
|
|
}
|
|
|
|
public void setAuditName(String auditName) {
|
|
this.auditName = auditName;
|
|
}
|
|
|
|
public String getAuditName() {
|
|
return auditName;
|
|
}
|
|
|
|
public void setAuditResult(String auditResult) {
|
|
this.auditResult = auditResult;
|
|
}
|
|
|
|
public String getAuditResult() {
|
|
return auditResult;
|
|
}
|
|
|
|
public void setAuditReason(String auditReason) {
|
|
this.auditReason = auditReason;
|
|
}
|
|
|
|
public String getAuditReason() {
|
|
return auditReason;
|
|
}
|
|
|
|
public Long getTaskId() {
|
|
return taskId;
|
|
}
|
|
|
|
public void setTaskId(Long taskId) {
|
|
this.taskId = taskId;
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
|
|
.append("id", getId())
|
|
.append("taskId", getTaskId())
|
|
.append("ywType", getYwType())
|
|
.append("muId", getMuId())
|
|
.append("muPath", getMuPath())
|
|
.append("birthNum", getBirthNum())
|
|
.append("name", getName())
|
|
.append("birthday", getBirthday())
|
|
.append("sex", getSex())
|
|
.append("bornAddress", getBornAddress())
|
|
.append("mName", getmName())
|
|
.append("mAge", getmAge())
|
|
.append("mGj", getmGj())
|
|
.append("mNation", getmNation())
|
|
.append("mCardId", getmCardId())
|
|
.append("fName", getfName())
|
|
.append("fAge", getfAge())
|
|
.append("fGj", getfGj())
|
|
.append("fNation", getfNation())
|
|
.append("fCardId", getfCardId())
|
|
.append("homeAddress", getHomeAddress())
|
|
.append("momSign", getMomSign())
|
|
.append("jsrySign", getJsrySign())
|
|
.append("jsUnit", getJsUnit())
|
|
.append("djType", getDjType())
|
|
.append("picIds", getPicIds())
|
|
.append("pictures", getPictures())
|
|
.append("allPicIds", getAllPicIds())
|
|
.append("allPics", getAllPics())
|
|
.append("errorCorrect", getErrorCorrect())
|
|
.append("auditStatus", getAuditStatus())
|
|
.append("auditName", getAuditName())
|
|
.append("auditResult", getAuditResult())
|
|
.append("auditReason", getAuditReason())
|
|
.append("remark", getRemark())
|
|
.append("createBy", getCreateBy())
|
|
.append("createTime", getCreateTime())
|
|
.append("updateBy", getUpdateBy())
|
|
.append("updateTime", getUpdateTime())
|
|
.toString();
|
|
}
|
|
}
|