package com.ltkj.hosp.service;/*
|
* @Authot:zjh
|
* @Date: 2024-07-10 15:46
|
* */
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import com.ltkj.hosp.domain.TjCf;
|
|
import java.util.List;
|
|
public interface TjCfService extends IService<TjCf> {
|
|
|
void delCfByCardId(String cfh);
|
|
List<String> getCfhs(String cardId);
|
|
List<String> getCfBlhs(String cardId, String bldh);
|
}
|