zjh
2025-01-21 7caeae303d4a93d0af2dc2d2f546987dd192be3c
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
package com.ltkj.hosp.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ltkj.common.core.domain.AjaxResult;
import com.ltkj.hosp.sqlDomain.LtkjExamJcbgd;
import com.ltkj.hosp.sqlDomain.LtkjExamJcsqd;
import com.ltkj.hosp.sqlDomain.LtkjHysqd;
 
import java.util.List;
import java.util.Map;
 
/**
 * @Company: 西安路泰科技有限公司
 * @Author: lige
 * @Date: 2023/12/11 17:57
 */
public interface LtkjExamJcsqdService extends IService<LtkjExamJcsqd> {
 
    LtkjExamJcsqd getLtkjJcsqdByTjhAndTmh(String tjh, String tmh);
 
 
    void  deletedLtkjJcsqdByTjhAndTmh(String tjh);
 
    List<LtkjExamJcsqd> getLtkjJcsqdByTjh(String tjh);
 
    void saveLtkjExamJcsqd(String tjh);
 
    AjaxResult getTjJcProByHisCall(String ksmc,String strIn,String brid,int pagecount,int page,String status);
 
    List<LtkjExamJcbgd> queryLtkjExamJcsqdByTjh(String tjh);
}