zjh
2024-07-05 ab550ebbfa4b579b373fdd7589e799bbb44362e7
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
package com.ltkj.hosp.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ltkj.hosp.sqlDomain.LtkjExamJcbgd;
import com.ltkj.hosp.sqlDomain.LtkjExamJcsqd;
import com.ltkj.hosp.sqlDomain.LtkjHysqd;
 
import java.util.List;
 
/**
 * @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,String tmh);
 
    List<LtkjExamJcsqd> getLtkjJcsqdByTjh(String tjh);
 
    void saveLtkjExamJcsqd(String tjh);
}