mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-21 11:35:12 +08:00
计费模板表新增 status 字段
This commit is contained in:
@@ -7,6 +7,7 @@
|
||||
<result property="id" column="id"/>
|
||||
<result property="templateCode" column="template_code"/>
|
||||
<result property="name" column="name"/>
|
||||
<result property="status" column="status"/>
|
||||
<result property="remark" column="remark"/>
|
||||
<result property="type" column="type"/>
|
||||
<result property="stationId" column="station_id"/>
|
||||
@@ -20,7 +21,7 @@
|
||||
|
||||
<sql id="Base_Column_List">
|
||||
<!--@mbg.generated PileBillingTemplate-->
|
||||
id, template_code, name, remark, type, station_id, public_flag,
|
||||
id, template_code, name, status, remark, type, station_id, public_flag,
|
||||
create_time, update_by, update_time, del_flag
|
||||
</sql>
|
||||
|
||||
@@ -119,6 +120,9 @@
|
||||
<if test="name != null">
|
||||
name,
|
||||
</if>
|
||||
<if test="status != null">
|
||||
status,
|
||||
</if>
|
||||
<if test="remark != null">
|
||||
remark,
|
||||
</if>
|
||||
@@ -193,6 +197,9 @@
|
||||
<if test="name != null">
|
||||
name = #{name},
|
||||
</if>
|
||||
<if test="status != null">
|
||||
status = #{status},
|
||||
</if>
|
||||
<if test="remark != null">
|
||||
remark = #{remark},
|
||||
</if>
|
||||
|
||||
Reference in New Issue
Block a user