| | |
| | | package com.ruoyi.system.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ruoyi.common.basic.PageInfo; |
| | | import com.ruoyi.system.applet.query.LeaveListUserQuery; |
| | | import com.ruoyi.system.applet.vo.LeaveUserListVO; |
| | | import com.ruoyi.system.model.TLeave; |
| | | import com.ruoyi.system.query.LeaveListQuery; |
| | | import com.ruoyi.system.vo.system.LeaveListVO; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | */ |
| | | public interface TLeaveService extends IService<TLeave> { |
| | | |
| | | PageInfo<LeaveListVO> pageList(LeaveListQuery query); |
| | | |
| | | PageInfo<LeaveUserListVO> leaveList(LeaveListUserQuery query); |
| | | } |