mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-05-09 20:40:03 +08:00
update 运营商等级
This commit is contained in:
@@ -27,6 +27,16 @@ public class PileMerchantInfo extends BaseEntity {
|
|||||||
@Excel(name = "运营商名称")
|
@Excel(name = "运营商名称")
|
||||||
private String merchantName;
|
private String merchantName;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 运营商等级(1-一级运营商;2-二级运营商)
|
||||||
|
*/
|
||||||
|
private String merchantLevel;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 父级运营商id
|
||||||
|
*/
|
||||||
|
private String parentId;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 地址
|
* 地址
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -6,6 +6,8 @@
|
|||||||
<resultMap type="com.jsowell.pile.domain.PileMerchantInfo" id="PileMerchantInfoResult">
|
<resultMap type="com.jsowell.pile.domain.PileMerchantInfo" id="PileMerchantInfoResult">
|
||||||
<result property="id" column="id"/>
|
<result property="id" column="id"/>
|
||||||
<result property="merchantName" column="merchant_name"/>
|
<result property="merchantName" column="merchant_name"/>
|
||||||
|
<result property="merchantLevel" column="merchant_level"/>
|
||||||
|
<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="organizationCode" column="organization_code"/>
|
<result property="organizationCode" column="organization_code"/>
|
||||||
@@ -25,6 +27,8 @@
|
|||||||
<sql id="Base_Column_List">
|
<sql id="Base_Column_List">
|
||||||
id,
|
id,
|
||||||
merchant_name,
|
merchant_name,
|
||||||
|
merchant_level,
|
||||||
|
parent_id,
|
||||||
address,
|
address,
|
||||||
status,
|
status,
|
||||||
organization_code,
|
organization_code,
|
||||||
@@ -99,6 +103,12 @@
|
|||||||
<if test="merchantName != null">
|
<if test="merchantName != null">
|
||||||
merchant_name,
|
merchant_name,
|
||||||
</if>
|
</if>
|
||||||
|
<if test="merchantLevel != null">
|
||||||
|
merchant_level,
|
||||||
|
</if>
|
||||||
|
<if test="parentId != null">
|
||||||
|
parent_id,
|
||||||
|
</if>
|
||||||
<if test="address != null">
|
<if test="address != null">
|
||||||
address,
|
address,
|
||||||
</if>
|
</if>
|
||||||
@@ -149,6 +159,12 @@
|
|||||||
<if test="merchantName != null">
|
<if test="merchantName != null">
|
||||||
#{merchantName},
|
#{merchantName},
|
||||||
</if>
|
</if>
|
||||||
|
<if test="merchantLevel != null">
|
||||||
|
#{merchantLevel},
|
||||||
|
</if>
|
||||||
|
<if test="parentId != null">
|
||||||
|
#{parentId},
|
||||||
|
</if>
|
||||||
<if test="address != null">
|
<if test="address != null">
|
||||||
#{address},
|
#{address},
|
||||||
</if>
|
</if>
|
||||||
@@ -200,6 +216,12 @@
|
|||||||
<if test="merchantName != null">
|
<if test="merchantName != null">
|
||||||
merchant_name = #{merchantName},
|
merchant_name = #{merchantName},
|
||||||
</if>
|
</if>
|
||||||
|
<if test="merchantLevel != null">
|
||||||
|
merchant_level = #{merchantLevel},
|
||||||
|
</if>
|
||||||
|
<if test="parentId != null">
|
||||||
|
parent_id = #{parentId},
|
||||||
|
</if>
|
||||||
<if test="address != null">
|
<if test="address != null">
|
||||||
address = #{address},
|
address = #{address},
|
||||||
</if>
|
</if>
|
||||||
|
|||||||
Reference in New Issue
Block a user