This commit is contained in:
Guoqs
2025-04-29 09:15:29 +08:00
parent 4df1d87b30
commit 299742738b
2 changed files with 7 additions and 9 deletions

View File

@@ -459,7 +459,7 @@
t1.del_flag
FROM pile_billing_detail t1
JOIN pile_billing_template t2 ON t2.template_code = t1.template_code
WHERE t2.id in
WHERE t2.id in
<foreach collection="templateIds" item="templateId" open="(" separator="," close=")">
#{templateId,jdbcType=BIGINT}
</foreach>
@@ -533,6 +533,7 @@
<select id="queryStationBillingTemplateList" resultType="com.jsowell.pile.vo.web.BillingTemplateVO">
select
t2.id as templateId,
t2.status as status,
t2.template_code as templateCode,
t2.name as templateName,
t2.template_remark as remark,
@@ -651,4 +652,4 @@
order by t2.update_time DESC, t2.create_time DESC
limit 1
</select>
</mapper>
</mapper>