zjh
2025-06-05 2c19fa65dc87ea8f3d81f84154f4eeabff7f8d00
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
60
61
62
package com.ltkj.hosp.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ltkj.hosp.domain.TjContract;
 
import java.util.List;
 
/**
 * 合同Service接口
 *
 * @author ltkj_赵佳豪&李格
 * @date 2023-02-17
 */
public interface ITjContractService extends IService<TjContract> {
    /**
     * 查询合同
     *
     * @param id 合同主键
     * @return 合同
     */
    public TjContract selectTjContractById(Long id);
 
    /**
     * 查询合同列表
     *
     * @param tjContract 合同
     * @return 合同集合
     */
    public List<TjContract> selectTjContractList(TjContract tjContract);
 
    /**
     * 新增合同
     *
     * @param tjContract 合同
     * @return 结果
     */
    public int insertTjContract(TjContract tjContract);
 
    /**
     * 修改合同
     *
     * @param tjContract 合同
     * @return 结果
     */
    public int updateTjContract(TjContract tjContract);
 
    /**
     * 批量删除合同
     *
     * @param ids 需要删除的合同主键集合
     * @return 结果
     */
    public int deleteTjContractByIds(Long[] ids);
 
    /**
     * 删除合同信息
     *
     * @param id 合同主键
     * @return 结果
     */
    public int deleteTjContractById(Long id);
}