运营商表加字段 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; private String merchantLevel;
/**
* 延时分账模式0-不延时1-延时分账)
*/
private String delayMode;
/** /**
* 父级运营商id * 父级运营商id
*/ */

View File

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