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);
|
}
|