zjh
2025-03-13 a9c99f81d343efd85dec9229db6c4cf52e497641
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
package com.ltkj.hosp.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ltkj.hosp.sqlDomain.LtkjExamJcsqd;
import com.ltkj.hosp.sqlDomain.LtkjHybgd;
 
import java.util.List;
 
/**
 * @Company: 西安路泰科技有限公司
 * @Author: lige
 * @Date: 2023/12/11 17:57
 */
public interface LtkjHybgdService extends IService<LtkjHybgd> {
 
    void  deletedLtkjHybgdByTjhAndTmh(String tmh);
 
    List<String> getJianYanBaoGaoDan(String cardId);
 
    List<LtkjHybgd> getJianYanBaoGaoDanList(String tmh);
 
    List<String> getJianChaBaoGaoDan(String cardId);
 
 
    List<LtkjHybgd> getReportJianYanBaoGaoDanList(String tmh);
}