mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-06-11 18:59:51 +08:00
Merge branch 'dev' of http://192.168.2.2:8099/jsowell/jsowell-charger-web into dev
This commit is contained in:
@@ -53,6 +53,16 @@ public class PileBillingTemplate extends BaseEntity {
|
|||||||
@Excel(name = "充电站id")
|
@Excel(name = "充电站id")
|
||||||
private Long stationId;
|
private Long stationId;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 免费占桩时长 (单位:分钟)
|
||||||
|
*/
|
||||||
|
private String freeTime;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 占用费率 (单位:元/分钟)
|
||||||
|
*/
|
||||||
|
private String occupyFee;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 删除标识(0-正常;1-删除)
|
* 删除标识(0-正常;1-删除)
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -11,6 +11,8 @@
|
|||||||
<result property="remark" column="remark"/>
|
<result property="remark" column="remark"/>
|
||||||
<result property="type" column="type"/>
|
<result property="type" column="type"/>
|
||||||
<result property="stationId" column="station_id"/>
|
<result property="stationId" column="station_id"/>
|
||||||
|
<result property="freeTime" column="free_time"/>
|
||||||
|
<result property="occupyFee" column="occupy_fee"/>
|
||||||
<result property="publicFlag" column="public_flag"/>
|
<result property="publicFlag" column="public_flag"/>
|
||||||
<result property="createBy" column="create_by"/>
|
<result property="createBy" column="create_by"/>
|
||||||
<result property="createTime" column="create_time"/>
|
<result property="createTime" column="create_time"/>
|
||||||
@@ -21,7 +23,7 @@
|
|||||||
|
|
||||||
<sql id="Base_Column_List">
|
<sql id="Base_Column_List">
|
||||||
<!--@mbg.generated PileBillingTemplate-->
|
<!--@mbg.generated PileBillingTemplate-->
|
||||||
id, template_code, name, status, remark, type, station_id, public_flag,
|
id, template_code, name, status, remark, type, station_id, free_time, occupy_fee, public_flag,
|
||||||
create_time, update_by, update_time, del_flag
|
create_time, update_by, update_time, del_flag
|
||||||
</sql>
|
</sql>
|
||||||
|
|
||||||
@@ -132,6 +134,12 @@
|
|||||||
<if test="stationId != null">
|
<if test="stationId != null">
|
||||||
station_id,
|
station_id,
|
||||||
</if>
|
</if>
|
||||||
|
<if test="freeTime != null">
|
||||||
|
free_time,
|
||||||
|
</if>
|
||||||
|
<if test="occupyFee != null">
|
||||||
|
occupy_fee,
|
||||||
|
</if>
|
||||||
<if test="createBy != null">
|
<if test="createBy != null">
|
||||||
create_by,
|
create_by,
|
||||||
</if>
|
</if>
|
||||||
@@ -170,6 +178,12 @@
|
|||||||
<if test="stationId != null">
|
<if test="stationId != null">
|
||||||
#{stationId},
|
#{stationId},
|
||||||
</if>
|
</if>
|
||||||
|
<if test="freeTime != null">
|
||||||
|
#{freeTime},
|
||||||
|
</if>
|
||||||
|
<if test="occupyFee != null">
|
||||||
|
#{occupyFee},
|
||||||
|
</if>
|
||||||
<if test="createBy != null">
|
<if test="createBy != null">
|
||||||
#{createBy},
|
#{createBy},
|
||||||
</if>
|
</if>
|
||||||
@@ -212,6 +226,12 @@
|
|||||||
<if test="stationId != null">
|
<if test="stationId != null">
|
||||||
station_id = #{stationId},
|
station_id = #{stationId},
|
||||||
</if>
|
</if>
|
||||||
|
<if test="freeTime != null">
|
||||||
|
free_time = #{freeTime},
|
||||||
|
</if>
|
||||||
|
<if test="occupyFee != null">
|
||||||
|
occupy_fee = #{occupyFee},
|
||||||
|
</if>
|
||||||
<if test="publishTime != null">
|
<if test="publishTime != null">
|
||||||
publish_time = #{publishTime},
|
publish_time = #{publishTime},
|
||||||
</if>
|
</if>
|
||||||
|
|||||||
Reference in New Issue
Block a user