zjh
2023-12-06 41f99a843fb2c0424426e006f29c1e78192eae01
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.ltkj.hosp.service;
 
import java.util.List;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ltkj.hosp.domain.TjRules;
import com.ltkj.hosp.domain.TjSampling;
 
/**
 * 规则+病种Service接口
 *
 * @author ltkj_赵佳豪&李格
 * @date 2023-08-30
 */
public interface ITjRulesService extends IService<TjRules> {
 
 
    List<TjRules> getTjRulesListByProId(String proId);
 
    List<TjRules> getTjRulesListByTjNumAndProId(String tjNum,Long proId);
 
}