zjh
2025-05-30 b7d7d80a8a9e9ac145a05b5e1d545b6b61fc0cc4
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
package com.ltkj.hosp.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ltkj.hosp.sqlDomain.LtkjExamJcbgd;
import com.ltkj.hosp.sqlDomain.LtkjHybgd;
import com.ltkj.hosp.sqlDomain.LtkjMiddleHead;
 
import java.util.List;
 
/**
 * @Company: 西安路泰科技有限公司
 * @Author: lige
 * @Date: 2023/12/11 17:57
 */
public interface LtkjExamJcbgdService extends IService<LtkjExamJcbgd> {
 
 
    void  deletedLtkjJcbgdByTjhAndTmh(String tmh);
 
    void  deletedLtkjJcbgdByTjhandtmh(String tjh,String tmh);
 
    void deletedLtkjJcbgdByTjhAndTmhA(String tjh,String tmh);
 
    List<String> getJianJcBaoGaoDan(String cardId);
 
    List<LtkjExamJcbgd> getJianJcBaoGaoDanList(String tmh);
 
    List<LtkjExamJcbgd> getJianJcBaoGaoDanByTjh(String cardId);
}