| | |
| | | package com.panzhihua.service_user.service; |
| | | |
| | | 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.LoginUserInfoVO; |
| | | 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.common.model.vos.user.InputUserInfoVO; |
| | | import com.panzhihua.service_user.model.dos.SysUserInputDO; |
| | |
| | | * @param exportUserDTO |
| | | * @return |
| | | */ |
| | | R export(ExportUserDTO exportUserDTO); |
| | | R exportInputUser(ExportUserDTO exportUserDTO); |
| | | |
| | | /** |
| | | * 居民详情 |
| | | * @param id |
| | | * @return |
| | | */ |
| | | InputUserInfoVO inputUserDetail(Long id); |
| | | 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); |
| | | |
| | | |
| | | } |