zjh
2023-10-26 cdadbb79336316018fb890d0e7121ae99ea2be4f
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
32
33
34
35
36
37
38
package com.ltkj.hosp.service.impl;
 
import java.util.List;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.ltkj.common.utils.DateUtils;
import com.ltkj.hosp.domain.TjSampling;
import com.ltkj.hosp.mapper.TjSamplingMapper;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.ltkj.hosp.mapper.TjRulesMapper;
import com.ltkj.hosp.domain.TjRules;
import com.ltkj.hosp.service.ITjRulesService;
 
import javax.annotation.Resource;
 
/**
 * 规则+病种Service业务层处理
 *
 * @author ltkj_赵佳豪&李格
 * @date 2023-08-30
 */
@Service
public class TjRulesServiceImpl extends ServiceImpl<TjRulesMapper, TjRules>  implements ITjRulesService {
 
    @Resource
    private TjRulesMapper mapper;
 
    @Override
    public List<TjRules> getTjRulesListByProId(String proId) {
        return mapper.getTjRulesListByProId(proId);
    }
 
    @Override
    public List<TjRules> getTjRulesListByTjNumAndProId(String tjNum, Long proId) {
        return mapper.getTjRulesListByTjNumAndProId(tjNum,proId);
    }
}