| | |
| | | package com.panzhihua.service_user.service;/** |
| | | * @program: springcloud_k8s_panzhihuazhihuishequ |
| | | * |
| | | * @description: 居民导入 |
| | | * |
| | | * @author: huang.hongfa weixin hhf9596 qq 959656820 |
| | | * |
| | | * @create: 2021-02-05 17:42 |
| | | **/ |
| | | public interface SysUserInputService { |
| | | package com.panzhihua.service_user.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.panzhihua.common.model.dtos.user.EexcelUserDTO; |
| | | import com.panzhihua.common.model.vos.R; |
| | | import com.panzhihua.common.model.vos.user.CommunityUserInfoVO; |
| | | import com.panzhihua.service_user.model.dos.SysUserInputDO; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @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); |
| | | } |