查询显示科目单价;

This commit is contained in:
王奎兴
2026-04-02 16:03:22 +08:00
parent ba5137899f
commit 21ae63e78d
7 changed files with 221 additions and 9 deletions
@@ -76,4 +76,12 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
WHERE
contract_manage_id = #{contractManageId}
</select>
</mapper>
<select id="getBillingRules" resultType="com.mhd.common.core.domain.po.BillingRulesPO" parameterType="java.lang.Long">
select * from "NGWL_TEST_BMS".billing_rules where billing_rules_id = #{id} and del_flag = 1
</select>
<select id="getBillingParams" resultType="com.mhd.common.core.domain.po.BillingParamsPO" parameterType="java.lang.Long">
select * from "NGWL_TEST_BMS".billing_params where billing_rules_id = #{id} and del_flag = 1
</select>
</mapper>