¶Ô±ÈÐÂÎļþ |
| | |
| | | package org.dromara.workflow.service; |
| | | |
| | | import org.dromara.common.mybatis.core.page.PageQuery; |
| | | import org.dromara.common.mybatis.core.page.TableDataInfo; |
| | | import org.dromara.workflow.domain.TestLeave; |
| | | import org.dromara.workflow.domain.bo.TestLeaveBo; |
| | | import org.dromara.workflow.domain.vo.TestLeaveVo; |
| | | |
| | | import java.util.Collection; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 请åServiceæ¥å£ |
| | | * |
| | | * @author may |
| | | * @date 2023-07-21 |
| | | */ |
| | | public interface ITestLeaveService { |
| | | |
| | | /** |
| | | * æ¥è¯¢è¯·å |
| | | */ |
| | | TestLeaveVo queryById(Long id); |
| | | |
| | | /** |
| | | * æ¥è¯¢è¯·åå表 |
| | | */ |
| | | TableDataInfo<TestLeaveVo> queryPageList(TestLeaveBo bo, PageQuery pageQuery); |
| | | |
| | | /** |
| | | * æ¥è¯¢è¯·åå表 |
| | | */ |
| | | List<TestLeaveVo> queryList(TestLeaveBo bo); |
| | | |
| | | /** |
| | | * æ°å¢è¯·å |
| | | */ |
| | | TestLeaveVo insertByBo(TestLeaveBo bo); |
| | | |
| | | /** |
| | | * ä¿®æ¹è¯·å |
| | | */ |
| | | TestLeaveVo updateByBo(TestLeaveBo bo); |
| | | |
| | | /** |
| | | * æ ¡éªå¹¶æ¹éå é¤è¯·åä¿¡æ¯ |
| | | */ |
| | | Boolean deleteWithValidByIds(Collection<Long> ids); |
| | | } |