xiejun
2024-11-01 0496aed6e04c5084f05ce1035ba9ec38e3d4e9c7
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
50
51
52
53
54
55
56
57
58
59
package com.vci.ubcs.code.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.vci.ubcs.code.entity.CodeSrchCondConfig;
import com.vci.ubcs.code.vo.CodeSrchCondConfigVO;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.PageRequest;
 
import java.util.List;
 
/**
 * 引用码段,参照配置界面,查询条件配置表(CodeSrchCondConfig)表服务接口
 *
 * @author ludc
 * @since 2023-05-19 17:58:56
 */
public interface ICodeSrchCondConfigService extends IService<CodeSrchCondConfig> {
 
    /**
     * 新增数据
     *
     * @param codeSrchCondConfig 实例对象
     * @return 实例对象
     */
    boolean insert(CodeSrchCondConfig codeSrchCondConfig);
 
    /**
     * 批量新增数据
     *
     * @param codeSrchCondConfigVOS 实例对象
     * @return 实例对象
     */
    boolean insertBatch(List<CodeSrchCondConfigVO> codeSrchCondConfigVOS, String oid);
 
    /**
     * 批量——修改数据
     *
     * @param codeSrchCondConfigVOS 实例对象
     * @return 实例对象
     */
    boolean updateBatch(List<CodeSrchCondConfigVO> codeSrchCondConfigVOS);
 
    /**
     * 通过主键删除数据
     *
     * @param oid 主键
     * @return 是否成功
     */
    boolean deleteById(String oid);
 
    /**
     * 通过关联的参照配置id删除数据
     *
     * @param oid 参照配置主键
     * @return 是否成功
     */
    boolean deleteByReferConfigOid(String oid);
 
}