2024-01-03 11:04:18 +08:00
|
|
|
|
package com.zcloud.service.system;
|
|
|
|
|
|
|
|
|
|
import com.zcloud.entity.Page;
|
|
|
|
|
import com.zcloud.entity.PageData;
|
|
|
|
|
import com.zcloud.entity.system.User;
|
2024-01-26 15:54:26 +08:00
|
|
|
|
import com.zcloud.util.ReturnMap;
|
2024-03-22 14:53:46 +08:00
|
|
|
|
import org.springframework.web.multipart.MultipartFile;
|
2024-01-03 11:04:18 +08:00
|
|
|
|
|
2024-01-11 15:17:27 +08:00
|
|
|
|
import java.io.IOException;
|
2024-01-03 11:04:18 +08:00
|
|
|
|
import java.util.List;
|
2024-02-06 15:40:01 +08:00
|
|
|
|
import java.util.Map;
|
2024-01-03 11:04:18 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 说明:用户服务接口
|
|
|
|
|
* 作者:luoxiaobao
|
|
|
|
|
* 官网:www.qdkjchina.com
|
|
|
|
|
*/
|
|
|
|
|
public interface UsersService {
|
|
|
|
|
|
|
|
|
|
/**通过用户名获取用户信息
|
|
|
|
|
* @param pd
|
|
|
|
|
* @return
|
|
|
|
|
* @throws Exception
|
|
|
|
|
*/
|
|
|
|
|
public PageData findByUsername(PageData pd)throws Exception;
|
|
|
|
|
|
|
|
|
|
/**通过用户ID获取用户信息
|
|
|
|
|
* @param pd
|
|
|
|
|
* @return
|
|
|
|
|
* @throws Exception
|
|
|
|
|
*/
|
|
|
|
|
public PageData findById(PageData pd)throws Exception;
|
|
|
|
|
|
2024-01-22 14:15:49 +08:00
|
|
|
|
public List<PageData> listUserAndDept(PageData pd) throws Exception;
|
|
|
|
|
|
2024-01-03 11:04:18 +08:00
|
|
|
|
/** 获取获取部门账号
|
|
|
|
|
* @param pd
|
|
|
|
|
* @return
|
|
|
|
|
* @throws Exception
|
|
|
|
|
*/
|
|
|
|
|
public List<PageData> listUserbyDep(PageData pd)throws Exception;
|
|
|
|
|
|
|
|
|
|
/**通过用户名称获取用户信息
|
|
|
|
|
* @param pd
|
|
|
|
|
* @return
|
|
|
|
|
* @throws Exception
|
|
|
|
|
*/
|
|
|
|
|
public PageData findByName(PageData pd)throws Exception;
|
|
|
|
|
|
|
|
|
|
/**用户列表
|
|
|
|
|
* @param page
|
|
|
|
|
* @return
|
|
|
|
|
* @throws Exception
|
|
|
|
|
*/
|
|
|
|
|
public List<PageData> userlistPage(Page page)throws Exception;
|
|
|
|
|
|
|
|
|
|
/**用户列表
|
|
|
|
|
* @param page
|
|
|
|
|
* @return
|
|
|
|
|
* @throws Exception
|
|
|
|
|
*/
|
|
|
|
|
public List<PageData> userSelectlistPage(Page page)throws Exception;
|
|
|
|
|
|
|
|
|
|
/**通过用户ID获取用户信息和角色信息
|
|
|
|
|
* @param USER_ID
|
|
|
|
|
* @return
|
|
|
|
|
* @throws Exception
|
|
|
|
|
*/
|
|
|
|
|
public User getUserAndRoleById(String USER_ID) throws Exception;
|
|
|
|
|
|
|
|
|
|
/**保存用户IP
|
|
|
|
|
* @param pd
|
|
|
|
|
* @throws Exception
|
|
|
|
|
*/
|
|
|
|
|
public void saveIP(PageData pd)throws Exception;
|
|
|
|
|
|
|
|
|
|
/**通过邮箱获取数据
|
|
|
|
|
* @param pd
|
|
|
|
|
* @return
|
|
|
|
|
* @throws Exception
|
|
|
|
|
*/
|
|
|
|
|
public PageData findByEmail(PageData pd)throws Exception;
|
|
|
|
|
|
|
|
|
|
/**通过编码获取数据
|
|
|
|
|
* @param pd
|
|
|
|
|
* @return
|
|
|
|
|
* @throws Exception
|
|
|
|
|
*/
|
|
|
|
|
public PageData findByNumbe(PageData pd) throws Exception;
|
|
|
|
|
|
|
|
|
|
/**列出某角色下的所有用户
|
|
|
|
|
* @param pd
|
|
|
|
|
* @return
|
|
|
|
|
* @throws Exception
|
|
|
|
|
*/
|
|
|
|
|
public List<PageData> listAllUserByRoldId(PageData pd) throws Exception;
|
|
|
|
|
|
|
|
|
|
/**用户列表(全部)
|
|
|
|
|
* @param pd
|
|
|
|
|
* @return
|
|
|
|
|
* @throws Exception
|
|
|
|
|
*/
|
|
|
|
|
public List<PageData> listAllUser(PageData pd)throws Exception;
|
|
|
|
|
|
|
|
|
|
/**查询部门下用户
|
|
|
|
|
* @param pd
|
|
|
|
|
* @return
|
|
|
|
|
* @throws Exception
|
|
|
|
|
*/
|
|
|
|
|
public List<PageData> listUserByDept(PageData pd)throws Exception;
|
|
|
|
|
|
|
|
|
|
/**用户列表(弹窗选择用)
|
|
|
|
|
* @param page
|
|
|
|
|
* @return
|
|
|
|
|
* @throws Exception
|
|
|
|
|
*/
|
|
|
|
|
public List<PageData> listUsersBystaff(Page page)throws Exception;
|
|
|
|
|
|
|
|
|
|
/**保存用户
|
|
|
|
|
* @param pd
|
|
|
|
|
* @throws Exception
|
|
|
|
|
*/
|
|
|
|
|
public void saveUser(PageData pd)throws Exception;
|
|
|
|
|
|
|
|
|
|
/**保存用户系统皮肤
|
|
|
|
|
* @param pd
|
|
|
|
|
* @throws Exception
|
|
|
|
|
*/
|
|
|
|
|
public void saveSkin(PageData pd)throws Exception;
|
|
|
|
|
|
|
|
|
|
/**修改用户
|
|
|
|
|
* @param pd
|
|
|
|
|
* @throws Exception
|
|
|
|
|
*/
|
|
|
|
|
public void editUser(PageData pd)throws Exception;
|
|
|
|
|
public void editPassword(PageData pd)throws Exception;
|
|
|
|
|
|
|
|
|
|
/**删除用户
|
|
|
|
|
* @param pd
|
|
|
|
|
* @throws Exception
|
|
|
|
|
*/
|
|
|
|
|
public void deleteUser(PageData pd)throws Exception;
|
|
|
|
|
|
|
|
|
|
/**批量删除用户
|
|
|
|
|
* @param pd
|
|
|
|
|
* @throws Exception
|
|
|
|
|
*/
|
|
|
|
|
public void deleteAllUser(String[] USER_IDS)throws Exception;
|
|
|
|
|
public List<PageData> listUserBYids(String[] USER_IDS)throws Exception;
|
|
|
|
|
|
|
|
|
|
/**修改用户小程序权限
|
|
|
|
|
* @param pd
|
|
|
|
|
* @throws Exception
|
|
|
|
|
*/
|
|
|
|
|
public void editUserFuns(PageData pd);
|
|
|
|
|
|
|
|
|
|
/**查询小程序用户
|
|
|
|
|
* @param pd
|
|
|
|
|
* @return
|
|
|
|
|
* @throws Exception
|
|
|
|
|
*/
|
|
|
|
|
public PageData findAppUserById(PageData pd) throws Exception;
|
|
|
|
|
|
|
|
|
|
/**用户同意协议
|
|
|
|
|
* @param pd
|
|
|
|
|
* @throws Exception
|
|
|
|
|
*/
|
|
|
|
|
public void agreeProtocol(PageData pd) throws Exception;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 获取该企业下所有用户,用户判断是否重复
|
|
|
|
|
* @param pd
|
|
|
|
|
* @return
|
|
|
|
|
* @throws Exception
|
|
|
|
|
*/
|
|
|
|
|
public List<PageData> findUserNameAll (PageData pd)throws Exception;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 获取用户
|
|
|
|
|
* @param pd
|
|
|
|
|
* @return
|
|
|
|
|
* @throws Exception
|
|
|
|
|
*/
|
|
|
|
|
public List<PageData> findAllUser (PageData pd)throws Exception;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**获取账号及部门岗位
|
|
|
|
|
* @param pd
|
|
|
|
|
* @return
|
|
|
|
|
* @throws Exception
|
|
|
|
|
*/
|
|
|
|
|
public List<PageData> listUserDepPos(PageData pd) throws Exception;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 查询公司员工总数
|
|
|
|
|
* @param pd
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
public int getUserCount(PageData pd) throws Exception;
|
|
|
|
|
|
2024-01-05 08:51:44 +08:00
|
|
|
|
/**
|
|
|
|
|
* 查询公司检查过清单的员工总数
|
|
|
|
|
* @param pd
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
public int getWorkedUserCount(PageData pd) throws Exception;
|
|
|
|
|
|
2024-01-03 11:04:18 +08:00
|
|
|
|
/**查询用户倒班周期数据
|
|
|
|
|
* @param pd
|
|
|
|
|
* @return
|
|
|
|
|
* @throws Exception
|
|
|
|
|
*/
|
|
|
|
|
public List<PageData> getUserWork(PageData pd)throws Exception;
|
|
|
|
|
|
|
|
|
|
/**修改用户倒班周期
|
|
|
|
|
* @param pd
|
|
|
|
|
* @throws Exception
|
|
|
|
|
*/
|
|
|
|
|
public void editShiftWork(PageData pd) throws Exception;
|
|
|
|
|
|
2024-01-04 09:07:20 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2024-01-03 11:04:18 +08:00
|
|
|
|
/**获取人员Cascader数据(人员ID,姓名,部门ID,部门级别)
|
|
|
|
|
* @param pd
|
|
|
|
|
* @return
|
|
|
|
|
* @throws Exception
|
|
|
|
|
*/
|
|
|
|
|
public List<PageData> listCascader(PageData pd)throws Exception;
|
|
|
|
|
|
|
|
|
|
/**清除在线学习人员分类
|
|
|
|
|
* @param pd
|
|
|
|
|
* @return
|
|
|
|
|
* @throws Exception
|
|
|
|
|
*/
|
|
|
|
|
void clearLearnerCategory(PageData pd)throws Exception;
|
|
|
|
|
|
|
|
|
|
/**获取账号及部门岗位
|
|
|
|
|
* @param pd
|
|
|
|
|
* @return
|
|
|
|
|
* @throws Exception
|
|
|
|
|
*/
|
|
|
|
|
public List<PageData> listUserDepPoslistPage(Page page) throws Exception;
|
2024-01-04 09:07:20 +08:00
|
|
|
|
/**修改公司名称时同步修改企业账号
|
2024-01-03 11:04:18 +08:00
|
|
|
|
* @param pd
|
|
|
|
|
* @throws Exception
|
|
|
|
|
*/
|
2024-01-04 09:07:20 +08:00
|
|
|
|
public void updateCornUser(PageData pd)throws Exception;
|
|
|
|
|
/**查询用户名称及部门名称
|
|
|
|
|
* @param pd
|
|
|
|
|
* @return
|
|
|
|
|
* @throws Exception
|
|
|
|
|
*/
|
|
|
|
|
public PageData findUserDept(PageData pd)throws Exception;
|
|
|
|
|
|
|
|
|
|
/**获取账号及部门岗位
|
|
|
|
|
* @param page
|
|
|
|
|
* @return
|
|
|
|
|
* @throws Exception
|
|
|
|
|
*/
|
|
|
|
|
public List<PageData> listUserlistPage(Page page)throws Exception;
|
|
|
|
|
|
|
|
|
|
List<PageData> listUserLeader(PageData pd) throws Exception;
|
|
|
|
|
|
2024-01-03 11:04:18 +08:00
|
|
|
|
void updatePushCid(PageData pd)throws Exception;
|
2024-01-04 09:07:20 +08:00
|
|
|
|
|
|
|
|
|
List<PageData> listAll(PageData pd)throws Exception;
|
|
|
|
|
|
|
|
|
|
void editUserState(PageData pageData)throws Exception;
|
2024-01-11 15:17:27 +08:00
|
|
|
|
|
2024-01-26 15:54:26 +08:00
|
|
|
|
ReturnMap saveUserNew(PageData pd) throws Exception;
|
2024-01-11 15:17:27 +08:00
|
|
|
|
|
2024-01-22 14:15:49 +08:00
|
|
|
|
/**通过USERID查监管端用户
|
|
|
|
|
* @param pd
|
|
|
|
|
* @throws Exception
|
|
|
|
|
*/
|
|
|
|
|
PageData findByRegulatoryId(PageData pd) throws Exception;
|
|
|
|
|
|
|
|
|
|
/**通过用户ID获取用户信息1
|
|
|
|
|
* @param pd
|
|
|
|
|
* @return
|
|
|
|
|
* @throws Exception
|
|
|
|
|
*/
|
|
|
|
|
public PageData findByIdForEmis(PageData pd)throws Exception;
|
|
|
|
|
|
2024-01-25 14:20:05 +08:00
|
|
|
|
/**
|
|
|
|
|
* @Description: 修改人员定位卡号
|
|
|
|
|
* @Author: dearLin
|
|
|
|
|
* @Date: 2024/1/24/024 14:12
|
|
|
|
|
* @Param: [com.zcloud.entity.PageData] [pd]
|
|
|
|
|
* @Return: boolean
|
|
|
|
|
*/
|
|
|
|
|
String changeOrUpdUserCardNo(PageData pd) throws Exception;
|
|
|
|
|
|
|
|
|
|
List<PageData> getUserCardNoAll(PageData departPd);
|
2024-01-29 09:07:29 +08:00
|
|
|
|
|
2024-02-03 17:53:40 +08:00
|
|
|
|
List<PageData> selectUserListByUserIds(PageData selectPageData);
|
|
|
|
|
|
2024-01-29 09:07:29 +08:00
|
|
|
|
/**
|
|
|
|
|
* @Description: 根据id查卡号
|
|
|
|
|
* @Author: dearLin
|
|
|
|
|
* @Date: 2024/1/29/029 9:05
|
|
|
|
|
* @Param: [com.zcloud.entity.PageData] [pageData]
|
|
|
|
|
* @Return: com.zcloud.entity.PageData
|
|
|
|
|
*/
|
|
|
|
|
PageData getUserByCardNo(PageData pageData);
|
2024-02-06 15:40:01 +08:00
|
|
|
|
|
2024-02-26 15:38:06 +08:00
|
|
|
|
void removeCardNoUser(PageData pageData);
|
|
|
|
|
|
|
|
|
|
void editUserCardNoByPid(PageData pageData);
|
2024-03-06 17:56:01 +08:00
|
|
|
|
|
|
|
|
|
public PageData findByIdCard(PageData pd) throws Exception;
|
|
|
|
|
|
|
|
|
|
List<PageData> simplelistPage(Page page) throws Exception;
|
|
|
|
|
|
|
|
|
|
PageData getInfo(PageData request) throws Exception;
|
|
|
|
|
|
|
|
|
|
void setState(PageData request) throws Exception;
|
2024-03-21 08:42:15 +08:00
|
|
|
|
|
2024-03-22 09:37:32 +08:00
|
|
|
|
|
|
|
|
|
List<PageData> studentlist(PageData pd) throws Exception;
|
2024-03-22 14:53:46 +08:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 从业人员注册账号
|
|
|
|
|
* @param pd 注册信息
|
|
|
|
|
* @param files 证照附件
|
|
|
|
|
*/
|
|
|
|
|
void setPractitionerRegister(PageData pd, MultipartFile[] files) throws Exception;
|
|
|
|
|
|
|
|
|
|
/**从业人员列表 //userlistPage(Page page)
|
|
|
|
|
* @param page
|
|
|
|
|
* @return
|
|
|
|
|
* @throws Exception
|
|
|
|
|
*/
|
|
|
|
|
List<PageData> practitionerlistPage(Page page)throws Exception;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 从业人员入职审核
|
|
|
|
|
* @param pd
|
|
|
|
|
* @return
|
|
|
|
|
* @throws Exception
|
|
|
|
|
*/
|
|
|
|
|
ReturnMap setPractitionerReview(PageData pd) throws Exception;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 从业人员解聘
|
|
|
|
|
* @param pd
|
|
|
|
|
* @return
|
|
|
|
|
* @throws Exception
|
|
|
|
|
*/
|
|
|
|
|
ReturnMap setPractitionerDismissal(PageData pd) throws Exception;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 从业人员信息修改
|
|
|
|
|
* @param pd 注册信息
|
|
|
|
|
* @param files 证照附件
|
|
|
|
|
*/
|
|
|
|
|
void editPractitioner(PageData pd, MultipartFile[] files) throws Exception;
|
|
|
|
|
|
|
|
|
|
ReturnMap setPractitionerAdd(PageData pd, MultipartFile[] files) throws Exception;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 用户信息确认(入职)
|
|
|
|
|
* @param pd
|
|
|
|
|
*/
|
|
|
|
|
void setPractitionerConfirm(PageData pd) throws Exception;
|
2024-03-29 13:30:29 +08:00
|
|
|
|
|
|
|
|
|
List<PageData> userSelectPersonTypelist(PageData pd);
|
2024-03-29 13:36:34 +08:00
|
|
|
|
|
2024-03-29 10:47:48 +08:00
|
|
|
|
PageData getUserByUserId(PageData pd);
|
2024-04-08 18:01:44 +08:00
|
|
|
|
|
2024-04-08 20:12:27 +08:00
|
|
|
|
List<PageData> getPractitionerSelectList(PageData pd) throws Exception;
|
|
|
|
|
|
2024-04-09 19:08:24 +08:00
|
|
|
|
List<PageData> listUserByIds(String[] personIds);
|
2024-01-03 11:04:18 +08:00
|
|
|
|
}
|