8 changed files with 259 additions and 97 deletions
@ -0,0 +1,33 @@ |
|||||
|
package com.epmet.dto.form.dataSync; |
||||
|
|
||||
|
import com.epmet.commons.tools.dto.form.PageFormDTO; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
/** |
||||
|
* @Description |
||||
|
* @Author yzm |
||||
|
* @Date 2022/10/13 14:16 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class DataSyncRecordMaritalPageFormDTO extends PageFormDTO { |
||||
|
/** |
||||
|
* 姓名 |
||||
|
*/ |
||||
|
private String name; |
||||
|
|
||||
|
/** |
||||
|
* 身份证 |
||||
|
*/ |
||||
|
private String idCard; |
||||
|
|
||||
|
private String customerId; |
||||
|
/** |
||||
|
* 当前工作人员id |
||||
|
*/ |
||||
|
private String staffId; |
||||
|
/** |
||||
|
* 当前工作人员所属组织id |
||||
|
*/ |
||||
|
private String agencyId; |
||||
|
} |
||||
|
|
@ -0,0 +1,72 @@ |
|||||
|
package com.epmet.dto.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
import java.util.Date; |
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* 数据同步记录-居民婚姻信息 |
||||
|
* |
||||
|
* @author generator generator@elink-cn.com |
||||
|
* @since v1.0.0 2023-05-18 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class DataSyncRecordMaritalPageResultDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 1L; |
||||
|
|
||||
|
/** |
||||
|
* 主键 |
||||
|
*/ |
||||
|
private String id; |
||||
|
|
||||
|
/** |
||||
|
* 客户Id |
||||
|
*/ |
||||
|
private String customerId; |
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* 姓名 |
||||
|
*/ |
||||
|
private String name; |
||||
|
|
||||
|
/** |
||||
|
* 身份证 |
||||
|
*/ |
||||
|
private String idCard; |
||||
|
|
||||
|
/** |
||||
|
* 电话 |
||||
|
*/ |
||||
|
private String mobile; |
||||
|
|
||||
|
/** |
||||
|
* 居民Id,ic_resi_user.id |
||||
|
*/ |
||||
|
private String icResiUserId; |
||||
|
|
||||
|
/** |
||||
|
* 婚姻状况 |
||||
|
*/ |
||||
|
private String maritalStatusName; |
||||
|
|
||||
|
/** |
||||
|
* 婚姻状况 |
||||
|
*/ |
||||
|
private String maritalStatus; |
||||
|
|
||||
|
/** |
||||
|
* 处理状态(更新至居民信息) 0:未处理;1:处理成功;2处理失败 |
||||
|
*/ |
||||
|
private Integer dealStatus; |
||||
|
|
||||
|
private Integer dealStatusName; |
||||
|
|
||||
|
/** |
||||
|
* 处理结果 |
||||
|
*/ |
||||
|
private String dealResult; |
||||
|
} |
Loading…
Reference in new issue