This commit is contained in:
2023-06-27 11:11:43 +08:00
parent 6da9437ee8
commit 582a8296d9
5 changed files with 36 additions and 21 deletions

View File

@@ -537,4 +537,16 @@
#{item,jdbcType=VARCHAR}
</foreach>
</select>
<update id="updateStatusByStationId">
update pile_billing_template
set status = #{status,jdbcType=VARCHAR}
where station_id = #{stationId,jdbcType=VARCHAR}
</update>
<update id="updateStatusByTemplateId">
update pile_billing_template
set status = #{status,jdbcType=VARCHAR}
where id = #{templateId,jdbcType=VARCHAR}
</update>
</mapper>