运营商表加字段 delayMode

This commit is contained in:
2023-08-25 13:58:13 +08:00
parent cb16a447ec
commit a066a0d4fe
2 changed files with 19 additions and 0 deletions

View File

@@ -32,6 +32,11 @@ public class PileMerchantInfo extends BaseEntity {
*/
private String merchantLevel;
/**
* 延时分账模式0-不延时1-延时分账)
*/
private String delayMode;
/**
* 父级运营商id
*/

View File

@@ -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>