zjh
2025-06-20 5f1d1c462bbf49bc6a22b9e17b49733bcc1e0bc6
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
63
64
65
package com.ltkj.hosp.service;
 
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ltkj.hosp.domain.TjReservation;
 
import java.util.List;
 
/**
 * 体检预约Service接口
 *
 * @author ltkj
 * @date 2022-11-28
 */
public interface ITjReservationService extends IService<TjReservation> {
    /**
     * 查询体检预约
     *
     * @param id 体检预约主键
     * @return 体检预约
     */
    public TjReservation selectTjReservationById(String id);
 
    /**
     * 查询体检预约列表
     *
     * @param tjReservation 体检预约
     * @return 体检预约集合
     */
    public List<TjReservation> selectTjReservationList(TjReservation tjReservation);
 
    public List<TjReservation> selectTjReservationByDelete(TjReservation tjReservation);
 
    /**
     * 新增体检预约
     *
     * @param tjReservation 体检预约
     * @return 结果
     */
    public int insertTjReservation(TjReservation tjReservation);
 
    /**
     * 修改体检预约
     *
     * @param tjReservation 体检预约
     * @return 结果
     */
    public int updateTjReservation(TjReservation tjReservation);
 
    /**
     * 批量删除体检预约
     *
     * @param ids 需要删除的体检预约主键集合
     * @return 结果
     */
    public int deleteTjReservationByIds(Integer[] ids);
 
    /**
     * 删除体检预约信息
     *
     * @param id 体检预约主键
     * @return 结果
     */
    public int deleteTjReservationById(Integer id);
}