mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-06-18 06:09:58 +08:00
新增 默认充电起动金额字段
This commit is contained in:
@@ -94,6 +94,12 @@ public class MemberBasicInfo extends BaseEntity {
|
||||
@Excel(name = "所属运营商")
|
||||
private Long merchantId;
|
||||
|
||||
/**
|
||||
* 默认充电金额
|
||||
*/
|
||||
@Excel(name = "默认充电金额")
|
||||
private BigDecimal defaultChargeAmount;
|
||||
|
||||
/**
|
||||
* 删除标识(0-正常;1-删除)
|
||||
*/
|
||||
@@ -111,6 +117,7 @@ public class MemberBasicInfo extends BaseEntity {
|
||||
.append("avatarUrl", avatarUrl)
|
||||
.append("mobileNumber", mobileNumber)
|
||||
.append("merchantId", merchantId)
|
||||
.append("defaultChargeAmount", defaultChargeAmount)
|
||||
.append("delFlag", delFlag)
|
||||
.toString();
|
||||
}
|
||||
|
||||
@@ -17,6 +17,7 @@
|
||||
<result property="avatarUrl" column="avatar_url" />
|
||||
<result property="mobileNumber" column="mobile_number" />
|
||||
<result property="merchantId" column="merchant_id" />
|
||||
<result property="defaultChargeAmount" column="default_charge_amount"/>
|
||||
<result property="remark" column="remark" />
|
||||
<result property="createTime" column="create_time" />
|
||||
<result property="createBy" column="create_by" />
|
||||
@@ -34,7 +35,7 @@
|
||||
<sql id="Base_Column_List">
|
||||
<!--@mbg.generated PileBillingTemplate-->
|
||||
id, member_id, open_id, buyer_id, license_plate_number, nick_name,logic_card, physics_card, status, avatar_url,
|
||||
mobile_number, merchant_id, remark,
|
||||
mobile_number, merchant_id, default_charge_amount, remark,
|
||||
create_time, create_by, update_time, update_by, del_flag
|
||||
</sql>
|
||||
|
||||
@@ -70,6 +71,7 @@
|
||||
<if test="avatarUrl != null">avatar_url,</if>
|
||||
<if test="mobileNumber != null">mobile_number,</if>
|
||||
<if test="merchantId != null">merchant_id,</if>
|
||||
<if test="defaultChargeAmount != null">default_charge_amount,</if>
|
||||
<if test="remark != null">remark,</if>
|
||||
<if test="createTime != null">create_time,</if>
|
||||
<if test="createBy != null">create_by,</if>
|
||||
@@ -88,6 +90,7 @@
|
||||
<if test="avatarUrl != null">#{avatarUrl},</if>
|
||||
<if test="mobileNumber != null">#{mobileNumber},</if>
|
||||
<if test="merchantId != null">#{merchantId},</if>
|
||||
<if test="defaultChargeAmount != null">#{defaultChargeAmount},</if>
|
||||
<if test="remark != null">#{remark},</if>
|
||||
<if test="createTime != null">#{createTime},</if>
|
||||
<if test="createBy != null">#{createBy},</if>
|
||||
@@ -110,6 +113,7 @@
|
||||
<if test="avatarUrl != null">avatar_url = #{avatarUrl},</if>
|
||||
<if test="mobileNumber != null">mobile_number = #{mobileNumber},</if>
|
||||
<if test="merchantId != null">merchant_id = #{merchantId},</if>
|
||||
<if test="defaultChargeAmount != null">default_charge_amount = #{defaultChargeAmount},</if>
|
||||
<if test="remark != null">remark = #{remark},</if>
|
||||
<if test="createTime != null">create_time = #{createTime},</if>
|
||||
<if test="createBy != null">create_by = #{createBy},</if>
|
||||
|
||||
Reference in New Issue
Block a user