package com.ltkj.hosp.mapper; import java.util.List; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.ltkj.hosp.domain.TjOrderDetail; import com.ltkj.hosp.domain.TjOrderDetailRules; import com.ltkj.hosp.vodomain.TjRulesStatisticsVo; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import org.apache.ibatis.annotations.Select; /** * 结果结论数据记录Mapper接口 * * @author ltkj_赵佳豪&李格 * @date 2023-08-30 */ @Mapper public interface TjOrderDetailRulesMapper extends BaseMapper { @Select({""}) List getTjRulesStatisticsByTjNumAndAid(@Param(value = "tjNums") List tjNums,@Param(value = "aids") List aids); }