11 changed files with 225 additions and 7 deletions
@ -0,0 +1,44 @@ |
|||||
|
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 TopicResearchAnalysisFormDTO implements Serializable { |
||||
|
public interface AddUserInternalGroup { |
||||
|
} |
||||
|
|
||||
|
public interface AddUserShowGroup extends CustomerClientShowGroup { |
||||
|
} |
||||
|
|
||||
|
/** |
||||
|
* 当前选中的事件转为的项目id |
||||
|
*/ |
||||
|
@NotBlank(message = "projectId不能为空",groups = AddUserInternalGroup.class) |
||||
|
private String projectId; |
||||
|
|
||||
|
/** |
||||
|
* 个人档案的这个人 |
||||
|
*/ |
||||
|
@NotBlank(message = "icResiUserId不能为空",groups = AddUserInternalGroup.class) |
||||
|
private String icResiUserId; |
||||
|
|
||||
|
/** |
||||
|
* 个人档案的这个人,对应小程序的人的用户id |
||||
|
*/ |
||||
|
private List<String> epmetUserIdList; |
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
|
@NotBlank(message = "tokenDto中的customerId不能为空",groups = AddUserInternalGroup.class) |
||||
|
private String customerId; |
||||
|
} |
@ -0,0 +1,23 @@ |
|||||
|
package com.epmet.dto.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.util.List; |
||||
|
|
||||
|
@Data |
||||
|
public class TopicResearchAnalysisResDTO { |
||||
|
/** |
||||
|
* 居民信息及家属列表 |
||||
|
*/ |
||||
|
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