forked from rongchao/epmet-cloud-rizhao
				
			
			
			
				Browse Source
			
			
			
			
				
		# Conflicts: # epmet-user/epmet-user-server/src/main/java/com/epmet/controller/IcResiCollectController.java # epmet-user/epmet-user-server/src/main/java/com/epmet/dao/IcResiCollectDao.java # epmet-user/epmet-user-server/src/main/java/com/epmet/service/IcResiCollectService.java # epmet-user/epmet-user-server/src/main/java/com/epmet/service/impl/IcResiCollectServiceImpl.java # epmet-user/epmet-user-server/src/main/resources/mapper/IcResiCollectDao.xmldev
				 12 changed files with 387 additions and 6 deletions
			
			
		@ -0,0 +1,122 @@ | 
				
			|||
package com.epmet.dto; | 
				
			|||
 | 
				
			|||
import lombok.Data; | 
				
			|||
 | 
				
			|||
import javax.validation.constraints.NotBlank; | 
				
			|||
import java.io.Serializable; | 
				
			|||
 | 
				
			|||
 | 
				
			|||
/** | 
				
			|||
 * 居民信息采集-访客 | 
				
			|||
 * | 
				
			|||
 * @author generator generator@elink-cn.com | 
				
			|||
 * @since v1.0.0 2022-08-02 | 
				
			|||
 */ | 
				
			|||
@Data | 
				
			|||
public class SaveCollectVisitorFormDTO implements Serializable { | 
				
			|||
 | 
				
			|||
    private static final long serialVersionUID = 1L; | 
				
			|||
 | 
				
			|||
    /** | 
				
			|||
     * 客户Id customer.id | 
				
			|||
     */ | 
				
			|||
	private String customerId; | 
				
			|||
 | 
				
			|||
    /** | 
				
			|||
     * 网格ID | 
				
			|||
     */ | 
				
			|||
	private String gridId; | 
				
			|||
 | 
				
			|||
    /** | 
				
			|||
     * 组织Id | 
				
			|||
     */ | 
				
			|||
	private String agencyId; | 
				
			|||
 | 
				
			|||
    /** | 
				
			|||
     * 组织的pids | 
				
			|||
     */ | 
				
			|||
	private String pids; | 
				
			|||
 | 
				
			|||
    /** | 
				
			|||
     * 所属小区ID; | 
				
			|||
     */ | 
				
			|||
    @NotBlank(message = "小区ID不能为空") | 
				
			|||
	private String villageId; | 
				
			|||
 | 
				
			|||
    /** | 
				
			|||
     * 所属小区名称 | 
				
			|||
     */ | 
				
			|||
    @NotBlank(message = "小区名称不能为空") | 
				
			|||
	private String villageName; | 
				
			|||
 | 
				
			|||
    /** | 
				
			|||
     * 所属楼宇Id | 
				
			|||
     */ | 
				
			|||
    @NotBlank(message = "楼宇Id不能为空") | 
				
			|||
	private String buildId; | 
				
			|||
 | 
				
			|||
    /** | 
				
			|||
     * 所属楼宇名称 | 
				
			|||
     */ | 
				
			|||
    @NotBlank(message = "楼宇名称不能为空") | 
				
			|||
	private String buildName; | 
				
			|||
 | 
				
			|||
    /** | 
				
			|||
     * 单元id | 
				
			|||
     */ | 
				
			|||
    @NotBlank(message = "单元id不能为空") | 
				
			|||
	private String unitId; | 
				
			|||
 | 
				
			|||
    /** | 
				
			|||
     * 单元名 | 
				
			|||
     */ | 
				
			|||
    @NotBlank(message = "单元名不能为空") | 
				
			|||
	private String unitName; | 
				
			|||
 | 
				
			|||
    /** | 
				
			|||
     * 所属家庭Id | 
				
			|||
     */ | 
				
			|||
    @NotBlank(message = "家庭Id不能为空") | 
				
			|||
	private String homeId; | 
				
			|||
 | 
				
			|||
    /** | 
				
			|||
     * 房间名 | 
				
			|||
     */ | 
				
			|||
    @NotBlank(message = "房间名不能为空") | 
				
			|||
	private String homeName; | 
				
			|||
 | 
				
			|||
    /** | 
				
			|||
     * 详细地址 | 
				
			|||
     */ | 
				
			|||
    @NotBlank(message = "家庭地址不能为空") | 
				
			|||
    private String address; | 
				
			|||
 | 
				
			|||
    /** | 
				
			|||
     * 姓名 | 
				
			|||
     */ | 
				
			|||
    @NotBlank(message = "姓名不能为空") | 
				
			|||
	private String name; | 
				
			|||
 | 
				
			|||
    /** | 
				
			|||
     * 手机号 | 
				
			|||
     */ | 
				
			|||
    @NotBlank(message = "手机号不能为空") | 
				
			|||
	private String mobile; | 
				
			|||
 | 
				
			|||
    /** | 
				
			|||
     * 身份证号 | 
				
			|||
     */ | 
				
			|||
	private String idCard; | 
				
			|||
 | 
				
			|||
    /** | 
				
			|||
     * 来访事由 | 
				
			|||
     */ | 
				
			|||
	private String comeReason; | 
				
			|||
 | 
				
			|||
    /** | 
				
			|||
     * 人脸照片 | 
				
			|||
     */ | 
				
			|||
	private String faceImg; | 
				
			|||
 | 
				
			|||
 | 
				
			|||
} | 
				
			|||
@ -0,0 +1,18 @@ | 
				
			|||
package com.epmet.dto.form; | 
				
			|||
 | 
				
			|||
import com.epmet.commons.tools.dto.form.PageFormDTO; | 
				
			|||
import lombok.Data; | 
				
			|||
 | 
				
			|||
import java.io.Serializable; | 
				
			|||
 | 
				
			|||
/** | 
				
			|||
 * @program: epmet-cloud | 
				
			|||
 * @description: | 
				
			|||
 * @author: wangtong | 
				
			|||
 * @create: 2022-08-03 14:15 | 
				
			|||
 **/ | 
				
			|||
@Data | 
				
			|||
public class CollectPageFormDTO extends PageFormDTO implements Serializable { | 
				
			|||
 | 
				
			|||
    private String customerId; | 
				
			|||
} | 
				
			|||
@ -0,0 +1,51 @@ | 
				
			|||
package com.epmet.dto.result; | 
				
			|||
 | 
				
			|||
import lombok.Data; | 
				
			|||
 | 
				
			|||
import java.io.Serializable; | 
				
			|||
 | 
				
			|||
/** | 
				
			|||
 * @Author zxc | 
				
			|||
 * @DateTime 2022/3/18 19:00 | 
				
			|||
 * @DESC | 
				
			|||
 */ | 
				
			|||
@Data | 
				
			|||
public class CollectPageListDTO implements Serializable { | 
				
			|||
 | 
				
			|||
    private static final long serialVersionUID = -6692672375850864451L; | 
				
			|||
 | 
				
			|||
 | 
				
			|||
    private String id; | 
				
			|||
 | 
				
			|||
    /** | 
				
			|||
     * 居住地址 | 
				
			|||
     */ | 
				
			|||
    private String address; | 
				
			|||
 | 
				
			|||
    /** | 
				
			|||
     * 居民:resi  访客:visitor | 
				
			|||
     */ | 
				
			|||
    private String type; | 
				
			|||
 | 
				
			|||
    /** | 
				
			|||
     * 居民登记/访客登记 | 
				
			|||
     */ | 
				
			|||
    private String title; | 
				
			|||
 | 
				
			|||
    /** | 
				
			|||
     * 审核状态:0待审核 1审核不通过 2审核通过 | 
				
			|||
     */ | 
				
			|||
    private String checkState; | 
				
			|||
 | 
				
			|||
    /** | 
				
			|||
     * 审核状态名称 | 
				
			|||
     */ | 
				
			|||
    private String checkStateName; | 
				
			|||
 | 
				
			|||
    /** | 
				
			|||
     * 提交时间 | 
				
			|||
     */ | 
				
			|||
    private String createTime; | 
				
			|||
 | 
				
			|||
 | 
				
			|||
} | 
				
			|||
					Loading…
					
					
				
		Reference in new issue