新增计费模板描述字段

This commit is contained in:
2024-02-20 16:49:21 +08:00
parent e6bfafa686
commit 9b6d8b959d
7 changed files with 45 additions and 16 deletions

View File

@@ -230,9 +230,10 @@
<select id="queryStationList" resultType="com.jsowell.pile.vo.base.MemberGroupStationVO">
SELECT
t1.id,
t1.station_name,
t2.remark
t1.id as stationId,
t1.station_name as stationName,
t2.template_code as templateCode,
t2.template_desc as templateDesc
FROM
pile_station_info t1
JOIN pile_billing_template t2 ON t2.station_id = t1.id AND t2.del_flag = '0' AND t2.member_flag = '1'