mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-20 02:55:04 +08:00
update 查询运营商配置的提现方式
This commit is contained in:
@@ -29,14 +29,14 @@
|
||||
</resultMap>
|
||||
<sql id="Base_Column_List">
|
||||
<!--@mbg.generated-->
|
||||
id, merchant_name, merchant_level, parent_id, address, dept_id, `status`, delay_mode,
|
||||
organization_code, manager_name, manager_phone, service_phone, logo_url, app_id,
|
||||
alipay_app_id, withdrawal_type, reserved_amount, create_by, create_time, update_by,
|
||||
id, merchant_name, merchant_level, parent_id, address, dept_id, `status`, delay_mode,
|
||||
organization_code, manager_name, manager_phone, service_phone, logo_url, app_id,
|
||||
alipay_app_id, withdrawal_type, reserved_amount, create_by, create_time, update_by,
|
||||
update_time, del_flag
|
||||
</sql>
|
||||
<select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap">
|
||||
<!--@mbg.generated-->
|
||||
select
|
||||
select
|
||||
<include refid="Base_Column_List" />
|
||||
from pile_merchant_info
|
||||
where id = #{id,jdbcType=INTEGER}
|
||||
@@ -525,19 +525,19 @@
|
||||
<insert id="batchInsert" keyColumn="id" keyProperty="id" parameterType="map" useGeneratedKeys="true">
|
||||
<!--@mbg.generated-->
|
||||
insert into pile_merchant_info
|
||||
(merchant_name, merchant_level, parent_id, address, dept_id, `status`, delay_mode,
|
||||
organization_code, manager_name, manager_phone, service_phone, logo_url, app_id,
|
||||
alipay_app_id, withdrawal_type, reserved_amount, create_by, create_time, update_by,
|
||||
(merchant_name, merchant_level, parent_id, address, dept_id, `status`, delay_mode,
|
||||
organization_code, manager_name, manager_phone, service_phone, logo_url, app_id,
|
||||
alipay_app_id, withdrawal_type, reserved_amount, create_by, create_time, update_by,
|
||||
update_time, del_flag)
|
||||
values
|
||||
<foreach collection="list" item="item" separator=",">
|
||||
(#{item.merchantName,jdbcType=VARCHAR}, #{item.merchantLevel,jdbcType=VARCHAR}, #{item.parentId,jdbcType=VARCHAR},
|
||||
#{item.address,jdbcType=VARCHAR}, #{item.deptId,jdbcType=VARCHAR}, #{item.status,jdbcType=CHAR},
|
||||
#{item.delayMode,jdbcType=VARCHAR}, #{item.organizationCode,jdbcType=VARCHAR},
|
||||
#{item.managerName,jdbcType=VARCHAR}, #{item.managerPhone,jdbcType=VARCHAR}, #{item.servicePhone,jdbcType=VARCHAR},
|
||||
#{item.logoUrl,jdbcType=VARCHAR}, #{item.appId,jdbcType=VARCHAR}, #{item.alipayAppId,jdbcType=VARCHAR},
|
||||
#{item.withdrawalType,jdbcType=VARCHAR}, #{item.reservedAmount,jdbcType=DECIMAL},
|
||||
#{item.createBy,jdbcType=VARCHAR}, #{item.createTime,jdbcType=TIMESTAMP}, #{item.updateBy,jdbcType=VARCHAR},
|
||||
(#{item.merchantName,jdbcType=VARCHAR}, #{item.merchantLevel,jdbcType=VARCHAR}, #{item.parentId,jdbcType=VARCHAR},
|
||||
#{item.address,jdbcType=VARCHAR}, #{item.deptId,jdbcType=VARCHAR}, #{item.status,jdbcType=CHAR},
|
||||
#{item.delayMode,jdbcType=VARCHAR}, #{item.organizationCode,jdbcType=VARCHAR},
|
||||
#{item.managerName,jdbcType=VARCHAR}, #{item.managerPhone,jdbcType=VARCHAR}, #{item.servicePhone,jdbcType=VARCHAR},
|
||||
#{item.logoUrl,jdbcType=VARCHAR}, #{item.appId,jdbcType=VARCHAR}, #{item.alipayAppId,jdbcType=VARCHAR},
|
||||
#{item.withdrawalType,jdbcType=VARCHAR}, #{item.reservedAmount,jdbcType=DECIMAL},
|
||||
#{item.createBy,jdbcType=VARCHAR}, #{item.createTime,jdbcType=TIMESTAMP}, #{item.updateBy,jdbcType=VARCHAR},
|
||||
#{item.updateTime,jdbcType=TIMESTAMP}, #{item.delFlag,jdbcType=CHAR})
|
||||
</foreach>
|
||||
</insert>
|
||||
@@ -597,7 +597,7 @@
|
||||
#{updateTime,jdbcType=TIMESTAMP},
|
||||
#{delFlag,jdbcType=CHAR},
|
||||
</trim>
|
||||
on duplicate key update
|
||||
on duplicate key update
|
||||
<trim suffixOverrides=",">
|
||||
<if test="id != null">
|
||||
id = #{id,jdbcType=INTEGER},
|
||||
@@ -765,7 +765,7 @@
|
||||
#{delFlag,jdbcType=CHAR},
|
||||
</if>
|
||||
</trim>
|
||||
on duplicate key update
|
||||
on duplicate key update
|
||||
<trim suffixOverrides=",">
|
||||
<if test="id != null">
|
||||
id = #{id,jdbcType=INTEGER},
|
||||
@@ -835,7 +835,7 @@
|
||||
</if>
|
||||
</trim>
|
||||
</insert>
|
||||
<resultMap id="PileMerchantInfoResult" type="com.jsowell.pile.domain.PileMerchantInfo">
|
||||
<resultMap id="BaseResultMap" type="com.jsowell.pile.domain.PileMerchantInfo">
|
||||
<result column="id" property="id" />
|
||||
<result column="merchant_name" property="merchantName" />
|
||||
<result column="merchant_level" property="merchantLevel" />
|
||||
@@ -864,7 +864,7 @@
|
||||
from pile_merchant_info
|
||||
</sql>
|
||||
|
||||
<select id="selectPileMerchantInfoList" parameterType="com.jsowell.pile.domain.PileMerchantInfo" resultMap="PileMerchantInfoResult">
|
||||
<select id="selectPileMerchantInfoList" parameterType="com.jsowell.pile.domain.PileMerchantInfo" resultMap="BaseResultMap">
|
||||
<include refid="selectPileMerchantInfoVo" />
|
||||
<where>
|
||||
del_flag = '0'
|
||||
@@ -905,17 +905,17 @@
|
||||
</where>
|
||||
</select>
|
||||
|
||||
<select id="selectPileMerchantInfoById" parameterType="Long" resultMap="PileMerchantInfoResult">
|
||||
<select id="selectPileMerchantInfoById" parameterType="Long" resultMap="BaseResultMap">
|
||||
<include refid="selectPileMerchantInfoVo" />
|
||||
where id = #{id}
|
||||
</select>
|
||||
|
||||
|
||||
<select id="selectPileMerchantInfoListByIdList" resultMap="PileMerchantInfoResult">
|
||||
<select id="selectPileMerchantInfoListByIdList" resultMap="BaseResultMap">
|
||||
select
|
||||
<include refid="Base_Column_List" />
|
||||
from pile_merchant_info
|
||||
where id in
|
||||
where id in
|
||||
<foreach close=")" collection="merchantIdList" item="merchantId" open="(" separator=",">
|
||||
#{merchantId,jdbcType=VARCHAR}
|
||||
</foreach>
|
||||
@@ -1125,7 +1125,7 @@
|
||||
</foreach>
|
||||
</delete>
|
||||
|
||||
<select id="selectPileMerchantInfoByWxAppId" resultMap="PileMerchantInfoResult">
|
||||
<select id="selectPileMerchantInfoByWxAppId" resultMap="BaseResultMap">
|
||||
select
|
||||
<include refid="Base_Column_List" />
|
||||
from pile_merchant_info
|
||||
@@ -1149,7 +1149,7 @@
|
||||
</if>
|
||||
</select>
|
||||
|
||||
<select id="queryInfoByDeptId" resultMap="PileMerchantInfoResult">
|
||||
<select id="queryInfoByDeptId" resultMap="BaseResultMap">
|
||||
select
|
||||
<include refid="Base_Column_List" />
|
||||
from pile_merchant_info
|
||||
@@ -1157,7 +1157,7 @@
|
||||
and dept_id = #{deptId,jdbcType=VARCHAR}
|
||||
</select>
|
||||
|
||||
<select id="queryInfoListByIds" resultMap="PileMerchantInfoResult">
|
||||
<select id="queryInfoListByIds" resultMap="BaseResultMap">
|
||||
select
|
||||
<include refid="Base_Column_List" />
|
||||
from
|
||||
@@ -1171,7 +1171,7 @@
|
||||
</if>
|
||||
</select>
|
||||
|
||||
<select id="queryFirstLevelMerchantList" resultMap="PileMerchantInfoResult">
|
||||
<select id="queryFirstLevelMerchantList" resultMap="BaseResultMap">
|
||||
select
|
||||
<include refid="Base_Column_List" />
|
||||
from
|
||||
@@ -1180,7 +1180,7 @@
|
||||
and merchant_level = '1'
|
||||
</select>
|
||||
|
||||
<select id="getFirstLevelMerchantByWxAppId" resultMap="PileMerchantInfoResult">
|
||||
<select id="getFirstLevelMerchantByWxAppId" resultMap="BaseResultMap">
|
||||
select
|
||||
<include refid="Base_Column_List" />
|
||||
from
|
||||
@@ -1190,7 +1190,7 @@
|
||||
and app_id = #{wxAppId,jdbcType=VARCHAR}
|
||||
</select>
|
||||
|
||||
<select id="getFirstLevelMerchantByAlipayAppId" resultMap="PileMerchantInfoResult">
|
||||
<select id="getFirstLevelMerchantByAlipayAppId" resultMap="BaseResultMap">
|
||||
select
|
||||
<include refid="Base_Column_List" />
|
||||
from
|
||||
@@ -1248,7 +1248,7 @@
|
||||
</if>
|
||||
</select>
|
||||
|
||||
<select id="selectListByFirstMerchant" resultMap="PileMerchantInfoResult">
|
||||
<select id="selectListByFirstMerchant" resultMap="BaseResultMap">
|
||||
select <include refid="Base_Column_List" />
|
||||
from pile_merchant_info
|
||||
where del_flag = '0'
|
||||
@@ -1269,4 +1269,4 @@
|
||||
AND t1.id = #{stationId,jdbcType=VARCHAR}
|
||||
</select>
|
||||
|
||||
</mapper>
|
||||
</mapper>
|
||||
|
||||
Reference in New Issue
Block a user