mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-20 11:05:18 +08:00
运营商表加字段 delayMode
This commit is contained in:
@@ -32,6 +32,11 @@ public class PileMerchantInfo extends BaseEntity {
|
||||
*/
|
||||
private String merchantLevel;
|
||||
|
||||
/**
|
||||
* 延时分账模式(0-不延时;1-延时分账)
|
||||
*/
|
||||
private String delayMode;
|
||||
|
||||
/**
|
||||
* 父级运营商id
|
||||
*/
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
<result property="parentId" column="parent_id"/>
|
||||
<result property="address" column="address"/>
|
||||
<result property="status" column="status"/>
|
||||
<result property="delayMode" column="delay_mode"/>
|
||||
<result property="organizationCode" column="organization_code"/>
|
||||
<result property="managerName" column="manager_name"/>
|
||||
<result property="managerPhone" column="manager_phone"/>
|
||||
@@ -31,6 +32,7 @@
|
||||
parent_id,
|
||||
address,
|
||||
status,
|
||||
delay_mode,
|
||||
organization_code,
|
||||
manager_name,
|
||||
manager_phone,
|
||||
@@ -64,6 +66,9 @@
|
||||
<if test="status != null and status != ''">
|
||||
and status = #{status}
|
||||
</if>
|
||||
<if test="delayMode != null and delayMode != ''">
|
||||
and delay_mode = #{delayMode}
|
||||
</if>
|
||||
<if test="organizationCode != null and organizationCode != ''">
|
||||
and organization_code = #{organizationCode}
|
||||
</if>
|
||||
@@ -115,6 +120,9 @@
|
||||
<if test="status != null">
|
||||
status,
|
||||
</if>
|
||||
<if test="delayMode != null">
|
||||
delay_mode,
|
||||
</if>
|
||||
<if test="organizationCode != null">
|
||||
organization_code,
|
||||
</if>
|
||||
@@ -171,6 +179,9 @@
|
||||
<if test="status != null">
|
||||
#{status},
|
||||
</if>
|
||||
<if test="delayMode != null">
|
||||
#{delayMode},
|
||||
</if>
|
||||
<if test="organizationCode != null">
|
||||
#{organizationCode},
|
||||
</if>
|
||||
@@ -228,6 +239,9 @@
|
||||
<if test="status != null">
|
||||
status = #{status},
|
||||
</if>
|
||||
<if test="delayMode != null">
|
||||
delay_mode = #{delayMode},
|
||||
</if>
|
||||
<if test="organizationCode != null">
|
||||
organization_code = #{organizationCode},
|
||||
</if>
|
||||
|
||||
Reference in New Issue
Block a user