Files
his/openhis-server-new/openhis-domain/src/main/resources/mapper/administration/ChargeItemDefDetailAppMapper.xml
2025-12-10 14:20:24 +08:00

14 lines
582 B
XML

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.openhis.administration.mapper.ChargeItemDefDetailAppMapper">
<select id="searchChargeDetailDataByBusNo" resultType="com.openhis.administration.domain.ChargeItemDefDetail">
select create_time
from adm_charge_item_def_detail
where
condition_value = #{value} and condition_code = #{code} and (delete_flag = '0' or delete_flag = '1')
</select>
</mapper>