package thyyxxk.webserver.dao.his.medicine; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import org.apache.ibatis.annotations.Select; import thyyxxk.webserver.entity.medicine.YpZdDictVo; import thyyxxk.webserver.entity.medicine.vo.YpCodgVo; import java.util.List; import java.util.Map; @Mapper public interface YpCodgMatchDao { @Select("") List> selectMzChargePrescription(@Param("vo") YpCodgVo vo); @Select("") List> selectMzCfDetail(@Param("vo") YpCodgVo vo); @Select(" select name from sys_parameters where code = 'classCodeFskYp' ") String selectFskYpClassCode(); @Select(" select name from sys_parameters where code = 'deptCodeXts' ") String selectXtsDeptCode(); @Select(" select name from sys_parameters where code = 'isOpenTaoBaoMatch' ") String selectIsOpenTb(); @Select(" select * from yp_zd_dict where code = #{code} and serial = #{serial} ") YpZdDictVo selectYpZdDictByCode(@Param("code") String code, @Param("serial") String serial); }