| | |
| | | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.panzhihua.common.model.vos.sangeshenbian.SystemUserVo; |
| | | import com.panzhihua.common.model.vos.R; |
| | | import com.panzhihua.common.model.vos.west.SystemUserVo; |
| | | import com.panzhihua.westcommittee.model.entity.SystemUser; |
| | | import com.panzhihua.westcommittee.model.vo.RegionVO; |
| | | import com.panzhihua.westcommittee.warpper.SystemUserList; |
| | | import com.panzhihua.westcommittee.warpper.SystemUserListVo; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | |
| | | import java.util.List; |
| | | import java.util.Optional; |
| | |
| | | IPage<SystemUserListVo> list(SystemUser user, SystemUserList query); |
| | | |
| | | /** |
| | | * 根据手机号码查询小程序用户在三个身边的上级角色用户 |
| | | * 根据手机号码查询小程序用户在西区纪委的上级角色用户 |
| | | */ |
| | | Optional<SystemUser> getSystemUserAdminByPhone(String phone); |
| | | |
| | | /** |
| | | * 根据手机号码查询小程序用户在三个身边的用户 |
| | | * 根据手机号码查询小程序用户在西区纪委的用户 |
| | | */ |
| | | Optional<SystemUser> getSystemUserByPhone(String phone); |
| | | /** |
| | |
| | | */ |
| | | List<RegionVO> getRegionTree(SystemUserVo loginUserInfo); |
| | | |
| | | String getCreateByIdPhone(Long createBy); |
| | | |
| | | R<?> importUser(String s, MultipartFile file); |
| | | |
| | | } |