| | |
| | | import java.util.List; |
| | | |
| | | import com.ruoyi.common.basic.PageInfo; |
| | | import com.ruoyi.system.applet.query.DataReportQuery; |
| | | import com.ruoyi.system.applet.vo.TaskFinishListVO; |
| | | import com.ruoyi.system.query.SysUserQuery; |
| | | import com.ruoyi.system.vo.system.SysUserVO; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | |
| | | |
| | | List<SysUser> selectAllList(); |
| | | |
| | | List<SysUserVO> pageList(@Param("query")SysUserQuery query); |
| | | List<SysUserVO> pageList(@Param("query")SysUserQuery query,@Param("pageInfo")PageInfo<SysUserVO> pageInfo); |
| | | |
| | | void updatePassword(@Param("id") Long id,@Param("s") String s); |
| | | |
| | | long selectIdByPhone(@Param("phonenumber") String phonenumber); |
| | | |
| | | List<SysUser> selectUserByTempLateId(@Param("templateId")String templateId); |
| | | |
| | | List<SysUser> selectUserByDeptId(@Param("id")String id); |
| | | |
| | | List<TaskFinishListVO> pageListReport(@Param("query")DataReportQuery query, @Param("pageInfo")PageInfo<TaskFinishListVO> pageInfo); |
| | | |
| | | /** |
| | | * 通过部门id查询用户 |
| | |
| | | */ |
| | | List<SysUser> selectListByDeptIds(@Param("projectIds")List<String> projectIds); |
| | | |
| | | Integer selectUserCount(@Param("projectIds")List<String> projectIds, @Param("deptType")Integer deptType); |
| | | } |