ITblProblemledgerService.java
1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
package com.ruoyi.compliancemanagement.service;
import com.ruoyi.compliancemanagement.domain.TblProblemledger;
import com.ruoyi.compliancemanagement.domain.vo.TblProblemledgerVo;
import com.ruoyi.compliancemanagement.domain.bo.TblProblemledgerBo;
import com.ruoyi.common.core.page.TableDataInfo;
import com.ruoyi.common.core.domain.PageQuery;
import java.util.Collection;
import java.util.List;
/**
* 【请填写功能名称】Service接口
*
* @author ruoyi
* @date 2024-07-05
*/
public interface ITblProblemledgerService {
/**
* 查询【请填写功能名称】
*/
TblProblemledgerVo queryById(Long id);
/**
* 查询【请填写功能名称】列表
*/
TableDataInfo<TblProblemledgerVo> queryPageList(TblProblemledgerBo bo, PageQuery pageQuery);
/**
* 查询【请填写功能名称】列表
*/
List<TblProblemledgerVo> queryList(TblProblemledgerBo bo);
/**
* 新增【请填写功能名称】
*/
Boolean insertByBo(TblProblemledgerBo bo);
/**
* 修改【请填写功能名称】
*/
Boolean updateByBo(TblProblemledgerBo bo);
/**
* 校验并批量删除【请填写功能名称】信息
*/
Boolean deleteWithValidByIds(Collection<Long> ids, Boolean isValid);
}