Browse Source
# Conflicts: # epmet-module/gov-org/gov-org-server/src/main/java/com/epmet/dao/CustomerAgencyDao.javadev_shibei_match
20 changed files with 281 additions and 5 deletions
@ -0,0 +1,50 @@ |
|||||
|
package com.epmet.dto.form; |
||||
|
|
||||
|
import com.epmet.commons.tools.validator.group.CustomerClientShowGroup; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import javax.validation.constraints.NotBlank; |
||||
|
import java.io.Serializable; |
||||
|
import java.util.List; |
||||
|
|
||||
|
/** |
||||
|
* 数据分析-个人档案-上报事件详情-研判分析,查看项目通分类+来源于当前上报人上报的所有事件 |
||||
|
* |
||||
|
*/ |
||||
|
@Data |
||||
|
public class ResiEventResearchAnalysisFormDTO implements Serializable { |
||||
|
public interface AddUserInternalGroup { |
||||
|
} |
||||
|
|
||||
|
public interface AddUserShowGroup extends CustomerClientShowGroup { |
||||
|
} |
||||
|
|
||||
|
/** |
||||
|
* 当前选中的事件id |
||||
|
*/ |
||||
|
@NotBlank(message = "resiEventId不能为空",groups = AddUserInternalGroup.class) |
||||
|
private String resiEventId; |
||||
|
|
||||
|
/** |
||||
|
* 当前选中的事件转为的项目id |
||||
|
*/ |
||||
|
@NotBlank(message = "isResiUserId不能为空",groups = AddUserInternalGroup.class) |
||||
|
private String projectId; |
||||
|
|
||||
|
/** |
||||
|
* 个人档案的这个人 |
||||
|
*/ |
||||
|
@NotBlank(message = "isResiUserId不能为空",groups = AddUserInternalGroup.class) |
||||
|
private String isResiUserId; |
||||
|
|
||||
|
/** |
||||
|
* 个人档案的这个人,对应小程序的人的用户id |
||||
|
*/ |
||||
|
private List<String> epmetUserIdList; |
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
|
@NotBlank(message = "tokenDto中的customerId不能为空",groups = AddUserInternalGroup.class) |
||||
|
private String customerId; |
||||
|
} |
@ -0,0 +1,16 @@ |
|||||
|
package com.epmet.dto.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
import java.util.List; |
||||
|
|
||||
|
/** |
||||
|
* 数据分析-个人档案-上报事件详情-研判分析,查看项目通分类+来源于当前上报人上报的所有事件 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class ProjectDataDTO implements Serializable { |
||||
|
private String firstCategoryCode; |
||||
|
private String firstCategoryName; |
||||
|
private List<ProjectInfoIcData> projectList; |
||||
|
} |
@ -0,0 +1,17 @@ |
|||||
|
package com.epmet.dto.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* 数据分析-个人档案-上报事件详情-研判分析,查看项目通分类+来源于当前上报人上报的所有事件 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class ProjectInfoIcData implements Serializable { |
||||
|
private static final long serialVersionUID = -1937915930811634827L; |
||||
|
private String projectId; |
||||
|
private String projectTitle; |
||||
|
private String resiEventId; |
||||
|
private String projectStatus; |
||||
|
} |
@ -0,0 +1,30 @@ |
|||||
|
package com.epmet.dto.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
import java.util.List; |
||||
|
|
||||
|
/** |
||||
|
* 数据分析-个人档案-上报事件详情-研判分析,查看项目通分类+来源于当前上报人上报的所有事件 |
||||
|
* |
||||
|
*/ |
||||
|
@Data |
||||
|
public class ResiEventResearchAnalysisResDTO implements Serializable { |
||||
|
|
||||
|
/** |
||||
|
* 居民信息及家属列表 |
||||
|
*/ |
||||
|
private String icResiUserId; |
||||
|
private String icUserName; |
||||
|
private String houseId; |
||||
|
private List<HouseUserDTO> houseUserList; |
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* 入参中给的,再返回去 |
||||
|
*/ |
||||
|
private List<String> epmetUserIdList; |
||||
|
private List<ProjectDataDTO> projectData; |
||||
|
|
||||
|
} |
Loading…
Reference in new issue