|
|
|
|
@ -10,9 +10,9 @@ import java.util.Date;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 常住人口登记对象 da_czrkdj
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* @author hs
|
|
|
|
|
* @date 2024-05-08
|
|
|
|
|
* @date 2024-05-30
|
|
|
|
|
*/
|
|
|
|
|
public class DaCzrkdj extends BaseEntity
|
|
|
|
|
{
|
|
|
|
|
@ -21,6 +21,10 @@ public class DaCzrkdj extends BaseEntity
|
|
|
|
|
/** id */
|
|
|
|
|
private Long id;
|
|
|
|
|
|
|
|
|
|
/** 业务类型(字典) */
|
|
|
|
|
@Excel(name = "业务类型(字典)")
|
|
|
|
|
private String ywType;
|
|
|
|
|
|
|
|
|
|
/** 目录id */
|
|
|
|
|
@Excel(name = "目录id")
|
|
|
|
|
private Long muId;
|
|
|
|
|
@ -54,97 +58,106 @@ public class DaCzrkdj extends BaseEntity
|
|
|
|
|
@Excel(name = "身份证号")
|
|
|
|
|
private String cardId;
|
|
|
|
|
|
|
|
|
|
/** 档案图片 */
|
|
|
|
|
@Excel(name = "档案图片")
|
|
|
|
|
/** 识别的图片 */
|
|
|
|
|
@Excel(name = "识别的图片")
|
|
|
|
|
private String pictures;
|
|
|
|
|
|
|
|
|
|
public void setId(Long id)
|
|
|
|
|
public void setId(Long id)
|
|
|
|
|
{
|
|
|
|
|
this.id = id;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Long getId()
|
|
|
|
|
public Long getId()
|
|
|
|
|
{
|
|
|
|
|
return id;
|
|
|
|
|
}
|
|
|
|
|
public void setMuId(Long muId)
|
|
|
|
|
public void setYwType(String ywType)
|
|
|
|
|
{
|
|
|
|
|
this.ywType = ywType;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getYwType()
|
|
|
|
|
{
|
|
|
|
|
return ywType;
|
|
|
|
|
}
|
|
|
|
|
public void setMuId(Long muId)
|
|
|
|
|
{
|
|
|
|
|
this.muId = muId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Long getMuId()
|
|
|
|
|
public Long getMuId()
|
|
|
|
|
{
|
|
|
|
|
return muId;
|
|
|
|
|
}
|
|
|
|
|
public void setName(String name)
|
|
|
|
|
public void setName(String name)
|
|
|
|
|
{
|
|
|
|
|
this.name = name;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getName()
|
|
|
|
|
public String getName()
|
|
|
|
|
{
|
|
|
|
|
return name;
|
|
|
|
|
}
|
|
|
|
|
public void setHzName(String hzName)
|
|
|
|
|
public void setHzName(String hzName)
|
|
|
|
|
{
|
|
|
|
|
this.hzName = hzName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getHzName()
|
|
|
|
|
public String getHzName()
|
|
|
|
|
{
|
|
|
|
|
return hzName;
|
|
|
|
|
}
|
|
|
|
|
public void setRelation(String relation)
|
|
|
|
|
public void setRelation(String relation)
|
|
|
|
|
{
|
|
|
|
|
this.relation = relation;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getRelation()
|
|
|
|
|
public String getRelation()
|
|
|
|
|
{
|
|
|
|
|
return relation;
|
|
|
|
|
}
|
|
|
|
|
public void setBirthday(Date birthday)
|
|
|
|
|
public void setBirthday(Date birthday)
|
|
|
|
|
{
|
|
|
|
|
this.birthday = birthday;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Date getBirthday()
|
|
|
|
|
public Date getBirthday()
|
|
|
|
|
{
|
|
|
|
|
return birthday;
|
|
|
|
|
}
|
|
|
|
|
public void setAddress(String address)
|
|
|
|
|
public void setAddress(String address)
|
|
|
|
|
{
|
|
|
|
|
this.address = address;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getAddress()
|
|
|
|
|
public String getAddress()
|
|
|
|
|
{
|
|
|
|
|
return address;
|
|
|
|
|
}
|
|
|
|
|
public void setJiguan(String jiguan)
|
|
|
|
|
public void setJiguan(String jiguan)
|
|
|
|
|
{
|
|
|
|
|
this.jiguan = jiguan;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getJiguan()
|
|
|
|
|
public String getJiguan()
|
|
|
|
|
{
|
|
|
|
|
return jiguan;
|
|
|
|
|
}
|
|
|
|
|
public void setCardId(String cardId)
|
|
|
|
|
public void setCardId(String cardId)
|
|
|
|
|
{
|
|
|
|
|
this.cardId = cardId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getCardId()
|
|
|
|
|
public String getCardId()
|
|
|
|
|
{
|
|
|
|
|
return cardId;
|
|
|
|
|
}
|
|
|
|
|
public void setPictures(String pictures)
|
|
|
|
|
public void setPictures(String pictures)
|
|
|
|
|
{
|
|
|
|
|
this.pictures = pictures;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getPictures()
|
|
|
|
|
public String getPictures()
|
|
|
|
|
{
|
|
|
|
|
return pictures;
|
|
|
|
|
}
|
|
|
|
|
@ -152,21 +165,22 @@ public class DaCzrkdj extends BaseEntity
|
|
|
|
|
@Override
|
|
|
|
|
public String toString() {
|
|
|
|
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
|
|
|
|
.append("id", getId())
|
|
|
|
|
.append("muId", getMuId())
|
|
|
|
|
.append("name", getName())
|
|
|
|
|
.append("hzName", getHzName())
|
|
|
|
|
.append("relation", getRelation())
|
|
|
|
|
.append("birthday", getBirthday())
|
|
|
|
|
.append("address", getAddress())
|
|
|
|
|
.append("jiguan", getJiguan())
|
|
|
|
|
.append("cardId", getCardId())
|
|
|
|
|
.append("pictures", getPictures())
|
|
|
|
|
.append("remark", getRemark())
|
|
|
|
|
.append("createBy", getCreateBy())
|
|
|
|
|
.append("createTime", getCreateTime())
|
|
|
|
|
.append("updateBy", getUpdateBy())
|
|
|
|
|
.append("updateTime", getUpdateTime())
|
|
|
|
|
.toString();
|
|
|
|
|
.append("id", getId())
|
|
|
|
|
.append("ywType", getYwType())
|
|
|
|
|
.append("muId", getMuId())
|
|
|
|
|
.append("name", getName())
|
|
|
|
|
.append("hzName", getHzName())
|
|
|
|
|
.append("relation", getRelation())
|
|
|
|
|
.append("birthday", getBirthday())
|
|
|
|
|
.append("address", getAddress())
|
|
|
|
|
.append("jiguan", getJiguan())
|
|
|
|
|
.append("cardId", getCardId())
|
|
|
|
|
.append("pictures", getPictures())
|
|
|
|
|
.append("remark", getRemark())
|
|
|
|
|
.append("createBy", getCreateBy())
|
|
|
|
|
.append("createTime", getCreateTime())
|
|
|
|
|
.append("updateBy", getUpdateBy())
|
|
|
|
|
.append("updateTime", getUpdateTime())
|
|
|
|
|
.toString();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|