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