Browse Source
# Conflicts: # epmet-module/gov-project/gov-project-server/src/main/java/com/epmet/service/impl/ProjectServiceImpl.javamaster
51 changed files with 406 additions and 92 deletions
@ -0,0 +1,9 @@ |
|||
-- 1、增加字典类型 |
|||
INSERT INTO `epmet_admin`.`sys_dict_type` (`id`, `dict_type`, `dict_name`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`) VALUES (1000000000000000011, 'age_group', '年龄范围', '', 11, 1067246875800000001, '2021-11-18 16:29:58', 1067246875800000001, '2021-11-18 16:29:58'); |
|||
|
|||
-- 2、增加字典数据 |
|||
INSERT INTO `epmet_admin`.`sys_dict_data` (`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`) VALUES (1000000000000000230, 1000000000000000011, '50岁以下', '0', '', 0, 1, '2021-11-23 14:04:42', 1, '2021-11-23 14:04:42'); |
|||
INSERT INTO `epmet_admin`.`sys_dict_data` (`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`) VALUES (1000000000000000231, 1000000000000000011, '50-59岁', '1', '', 1, 1, '2021-11-23 14:04:42', 1, '2021-11-23 14:04:42'); |
|||
INSERT INTO `epmet_admin`.`sys_dict_data` (`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`) VALUES (1000000000000000232, 1000000000000000011, '60-69岁', '2', '', 2, 1, '2021-11-23 14:04:42', 1, '2021-11-23 14:04:42'); |
|||
INSERT INTO `epmet_admin`.`sys_dict_data` (`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`) VALUES (1000000000000000233, 1000000000000000011, '70-79岁', '3', '', 3, 1, '2021-11-23 14:04:42', 1, '2021-11-23 14:04:42'); |
|||
INSERT INTO `epmet_admin`.`sys_dict_data` (`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`) VALUES (1000000000000000234, 1000000000000000011, '80岁以上', '4', '', 4, 1, '2021-11-23 14:04:42', 1, '2021-11-23 14:04:42'); |
@ -0,0 +1,22 @@ |
|||
package com.epmet.dto.result.demand; |
|||
|
|||
import com.epmet.dto.result.HouseUserDTO; |
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.List; |
|||
|
|||
/** |
|||
* 数据分析-个人档案-需求详情,研判分析 |
|||
* 案件居民、家属 |
|||
*/ |
|||
@Data |
|||
public class HouseMemResDTO implements Serializable { |
|||
/** |
|||
* 居民信息及家属列表 |
|||
*/ |
|||
private String icResiUserId; |
|||
private String icUserName; |
|||
private String houseId; |
|||
private List<HouseUserDTO> houseUserList; |
|||
} |
@ -0,0 +1,19 @@ |
|||
package com.epmet.dto.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.NotBlank; |
|||
import java.io.Serializable; |
|||
|
|||
|
|||
@Data |
|||
public class FindIcUserFormDTO implements Serializable { |
|||
public interface AddUserInternalGroup { |
|||
} |
|||
|
|||
@NotBlank(message = "epmetUserId不能为空", groups = AddUserInternalGroup.class) |
|||
private String epmetUserId; |
|||
|
|||
@NotBlank(message = "客户id不能为空", groups = AddUserInternalGroup.class) |
|||
private String customerId; |
|||
} |
@ -0,0 +1,35 @@ |
|||
package com.epmet.dto.result; |
|||
|
|||
import lombok.AllArgsConstructor; |
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.List; |
|||
|
|||
|
|||
@Data |
|||
public class EpmetUserFamilyDTO implements Serializable { |
|||
/** |
|||
* 当前客户下,与自己相同身份证号的所有账号 |
|||
*/ |
|||
private List<String> epmetUserIdList; |
|||
|
|||
/** |
|||
* 同身份证号对应的ic里的居民 |
|||
*/ |
|||
private String icResiUserId; |
|||
/** |
|||
* ic里的姓名 |
|||
*/ |
|||
private String icUserName; |
|||
|
|||
/** |
|||
* ic里的房子id |
|||
*/ |
|||
private String houseId; |
|||
|
|||
/** |
|||
* 同屋的其他人 |
|||
*/ |
|||
private List<HouseUserDTO> houseUserList; |
|||
} |
Loading…
Reference in new issue