mitao
2025-02-21 31573d6180d15ef65ed0df9c2732495f40b12663
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
package com.panzhihua.service_user.service;
 
import java.util.List;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.panzhihua.common.model.dtos.community.ExportSpecialUserDTO;
import com.panzhihua.common.model.dtos.community.ExportUserDTO;
import com.panzhihua.common.model.dtos.user.ComMngUserTagDTO;
import com.panzhihua.common.model.dtos.user.EexcelUserDTO;
import com.panzhihua.common.model.dtos.user.InputUserTagsDTO;
import com.panzhihua.common.model.dtos.user.PageInputUserDTO;
import com.panzhihua.common.model.vos.R;
import com.panzhihua.common.model.vos.user.ComMngTagVO;
import com.panzhihua.common.model.vos.user.CommunityUserInfoVO;
import com.panzhihua.service_user.model.dos.SysUserInputDO;
 
/**
 * @program: springcloud_k8s_panzhihuazhihuishequ
 * @description: 居民导入
 * @author: huang.hongfa weixin hhf9596 qq 959656820
 * @create: 2021-02-05 17:42
 **/
public interface SysUserInputService extends IService<SysUserInputDO> {
    /**
     * 批量导入居民用户
     * 
     * @param list
     *            居民用户集合
     * @param areaName
     *            小区名字
     * @return 导入结果
     */
    R batchSaveUser(List<EexcelUserDTO> list, StringBuffer areaName);
 
    /**
     * 社区人员详情包括导入人员
     * 
     * @param userId
     *            人员id
     * @return CommunityUserInfoVO
     */
    CommunityUserInfoVO detailUserComunity(Long userId);
 
    /**
     * 分页查询居民数据
     * 
     * @param pageInputUserDTO
     * @return
     */
    R pageInputUser(PageInputUserDTO pageInputUserDTO);
 
    /**
     * 设置标签
     * 
     * @param inputUserTagsDTO
     * @return
     */
    R putUserTag(InputUserTagsDTO inputUserTagsDTO);
 
    /**
     * 导出居民信息
     * 
     * @param exportUserDTO
     * @return
     */
    R exportInputUser(ExportUserDTO exportUserDTO);
 
    /**
     * 居民详情
     * 
     * @param id
     * @return
     */
    R inputUserDetail(Long id);
 
    /**
     * 查询特殊群体
     * 
     * @param pageInputUserDTO
     * @return
     */
    R specialInputUser(PageInputUserDTO pageInputUserDTO);
 
    /**
     * 特殊群体标签
     * 
     * @param comMngUserTagDTO
     * @return
     */
    R specialInputUserTags(ComMngUserTagDTO comMngUserTagDTO);
 
    /**
     * 新增或修改特殊群体标签
     * 
     * @param comMngTagVO
     * @return
     */
    R saveSpecialInputUserTags(ComMngTagVO comMngTagVO);
 
    /**
     * 删除特殊群体标签
     * 
     * @param id
     * @return
     */
    R deleteSpecialInputUserTags(Long id);
 
    /**
     * 删除特殊群体用户
     * 
     * @param id
     * @return
     */
    R deleteSpecialInputUser(Long id);
 
    /**
     * 导出特殊群体用户
     * 
     * @param exportSpecialUserDTO
     * @return
     */
    R specialUserExport(ExportSpecialUserDTO exportSpecialUserDTO);
 
}