| | |
| | | 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; |
| | |
| | | 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); |
| | | |
| | | |
| | | } |