Browse Source

家庭成员审核表添加字段

feature/teamB_zz_wgh
Jackwang 3 years ago
parent
commit
649a7d1838
  1. 82
      epmet-user/epmet-user-client/src/main/java/com/epmet/dto/IcResiUserConfirmDTO.java
  2. 82
      epmet-user/epmet-user-client/src/main/java/com/epmet/dto/form/IcResiUserConfirmSubmitDTO.java
  3. 157
      epmet-user/epmet-user-server/src/main/java/com/epmet/entity/IcResiUserConfirmEntity.java

82
epmet-user/epmet-user-client/src/main/java/com/epmet/dto/IcResiUserConfirmDTO.java

@ -20,146 +20,166 @@ public class IcResiUserConfirmDTO implements Serializable {
/**
* 主键
*/
private String id;
private String id;
/**
* 客户Id customer.id
*/
private String customerId;
private String customerId;
/**
* 组织Id
*/
private String agencyId;
private String agencyId;
/**
* 组织的pids
*/
private String pids;
private String pids;
/**
* 网格ID
*/
private String gridId;
private String gridId;
/**
*
*/
private String surname;
private String surname;
/**
*
*/
private String name;
private String name;
/**
* 手机号
*/
private String mobile;
private String mobile;
/**
* 性别
*/
private String gender;
private String gender;
/**
* 身份证号
*/
private String idCard;
private String idCard;
/**
* 出生日期
*/
private String birthday;
private String birthday;
/**
* 户籍所在地
*/
private String hjszd;
/**
* 户籍所在地地区码
*/
private String hjszdCode;
private String hjszdCode;
/**
* 户籍所在地
* 户籍所在地层级编码
*/
private String hjszdPathCode;
/**
* 现居住地
*/
private String hjszd;
private String xjzd;
/**
* 现居住地地区码
*/
private String xjzdCode;
private String xjzdCode;
/**
* 现居住地
* 现居住地层级编码
*/
private String xjzd;
private String xjzdPathCode;
/**
* 民族字典表
*/
private String mz;
private String mz;
/**
* 名族名称
*/
private String mzName;
/**
* 与户主关系
*/
private String yhzgx;
private String yhzgx;
/**
* 与户主关系名称
*/
private String yhzgxName;
/**
* 审核状态0未审核1审核通过2审核不通过
*/
private String confirmResult;
private String confirmResult;
/**
* 审核不通过的原因
*/
private String reason;
private String reason;
/**
* 删除标识 0.未删除 1.已删除
*/
private Integer delFlag;
private Integer delFlag;
/**
* 乐观锁
*/
private Integer revision;
private Integer revision;
/**
* 创建人
*/
private String createdBy;
private String createdBy;
/**
* 创建时间
*/
private Date createdTime;
private Date createdTime;
/**
* 更新人
*/
private String updatedBy;
private String updatedBy;
/**
* 更新时间
*/
private Date updatedTime;
private Date updatedTime;
/**
* ic_resi_user表id
*/
private String icResiUserId;
private String icResiUserId;
/**
* 操作类型新增add 修改 update 删除 delete
*/
private String submitType;
private String submitType;
/**
* 删除原因
*/
private String deleteReason;
private String deleteReason;
/**
* 操作说明
*/
private String operationDescribe;
private String operationDescribe;
}

82
epmet-user/epmet-user-client/src/main/java/com/epmet/dto/form/IcResiUserConfirmSubmitDTO.java

@ -20,146 +20,166 @@ public class IcResiUserConfirmSubmitDTO implements Serializable {
/**
* 主键
*/
private String id;
private String id;
/**
* 客户Id customer.id
*/
private String customerId;
private String customerId;
/**
* 组织Id
*/
private String agencyId;
private String agencyId;
/**
* 组织的pids
*/
private String pids;
private String pids;
/**
* 网格ID
*/
private String gridId;
private String gridId;
/**
*
*/
private String surname;
private String surname;
/**
*
*/
private String name;
private String name;
/**
* 手机号
*/
private String mobile;
private String mobile;
/**
* 性别
*/
private String gender;
private String gender;
/**
* 身份证号
*/
private String idCard;
private String idCard;
/**
* 出生日期
*/
private String birthday;
private String birthday;
/**
* 户籍所在地
*/
private String hjszd;
/**
* 户籍所在地地区码
*/
private String hjszdCode;
private String hjszdCode;
/**
* 户籍所在地
* 户籍所在地层级编码
*/
private String hjszdPathCode;
/**
* 现居住地
*/
private String hjszd;
private String xjzd;
/**
* 现居住地地区码
*/
private String xjzdCode;
private String xjzdCode;
/**
* 现居住地
* 现居住地层级编码
*/
private String xjzd;
private String xjzdPathCode;
/**
* 民族字典表
*/
private String mz;
private String mz;
/**
* 名族名称
*/
private String mzName;
/**
* 与户主关系
*/
private String yhzgx;
private String yhzgx;
/**
* 与户主关系名称
*/
private String yhzgxName;
/**
* 审核状态0未审核1审核通过2审核不通过
*/
private String confirmResult;
private String confirmResult;
/**
* 审核不通过的原因
*/
private String reason;
private String reason;
/**
* 删除标识 0.未删除 1.已删除
*/
private Integer delFlag;
private Integer delFlag;
/**
* 乐观锁
*/
private Integer revision;
private Integer revision;
/**
* 创建人
*/
private String createdBy;
private String createdBy;
/**
* 创建时间
*/
private Date createdTime;
private Date createdTime;
/**
* 更新人
*/
private String updatedBy;
private String updatedBy;
/**
* 更新时间
*/
private Date updatedTime;
private Date updatedTime;
/**
* ic_resi_user表id
*/
private String icResiUserId;
private String icResiUserId;
/**
* 操作类型新增add 修改 update 删除 delete
*/
private String submitType;
private String submitType;
/**
* 删除原因
*/
private String deleteReason;
private String deleteReason;
/**
* 操作说明
*/
private String operationDescribe;
private String operationDescribe;
}

157
epmet-user/epmet-user-server/src/main/java/com/epmet/entity/IcResiUserConfirmEntity.java

@ -18,114 +18,135 @@ public class IcResiUserConfirmEntity extends BaseEpmetEntity {
private static final long serialVersionUID = 1L;
/**
* 客户Id customer.id
*/
/**
* 客户Id customer.id
*/
private String customerId;
/**
* 组织Id
*/
/**
* 组织Id
*/
private String agencyId;
/**
* 组织的pids
*/
/**
* 组织的pids
*/
private String pids;
/**
* 网格ID
*/
/**
* 网格ID
*/
private String gridId;
/**
*
*/
/**
*
*/
private String surname;
/**
*
*/
/**
*
*/
private String name;
/**
* 手机号
*/
/**
* 手机号
*/
private String mobile;
/**
* 性别
*/
/**
* 性别
*/
private String gender;
/**
* 身份证号
*/
/**
* 身份证号
*/
private String idCard;
/**
* 出生日期
*/
/**
* 出生日期
*/
private String birthday;
/**
* 户籍所在地地区码
*/
/**
* 户籍所在地
*/
private String hjszd;
/**
* 户籍所在地地区码
*/
private String hjszdCode;
/**
* 户籍所在地
*/
private String hjszd;
/**
* 户籍所在地层级编码
*/
private String hjszdPathCode;
/**
* 现居住地
*/
private String xjzd;
/**
* 现居住地地区码
*/
/**
* 现居住地地区码
*/
private String xjzdCode;
/**
* 现居住地
*/
private String xjzd;
/**
* 现居住地层级编码
*/
private String xjzdPathCode;
/**
* 民族字典表
*/
/**
* 民族字典表
*/
private String mz;
/**
* 与户主关系
*/
/**
* 名族名称
*/
private String mzName;
/**
* 与户主关系
*/
private String yhzgx;
/**
* 审核状态0未审核1审核通过2审核不通过
*/
/**
* 与户主关系名称
*/
private String yhzgxName;
/**
* 审核状态0未审核1审核通过2审核不通过
*/
private String confirmResult;
/**
* 审核不通过的原因
*/
/**
* 审核不通过的原因
*/
private String reason;
/**
* ic_resi_user表id
*/
/**
* ic_resi_user表id
*/
private String icResiUserId;
/**
* 操作类型新增add 修改 update 删除 delete
*/
/**
* 操作类型新增add 修改 update 删除 delete
*/
private String submitType;
/**
* 删除原因
*/
/**
* 删除原因
*/
private String deleteReason;
/**
* 操作说明
*/
/**
* 操作说明
*/
private String operationDescribe;
}

Loading…
Cancel
Save