mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-07-05 22:47:59 +08:00
update 查询运营商配置的提现方式
This commit is contained in:
@@ -647,7 +647,7 @@ public class PileMerchantInfoServiceImpl implements PileMerchantInfoService {
|
|||||||
if (pileMerchantInfo != null) {
|
if (pileMerchantInfo != null) {
|
||||||
MerchantWithdrawalTypeVO merchantWithdrawalTypeVO = new MerchantWithdrawalTypeVO();
|
MerchantWithdrawalTypeVO merchantWithdrawalTypeVO = new MerchantWithdrawalTypeVO();
|
||||||
merchantWithdrawalTypeVO.setMerchantId(pileMerchantInfo.getId() + "");
|
merchantWithdrawalTypeVO.setMerchantId(pileMerchantInfo.getId() + "");
|
||||||
merchantWithdrawalTypeVO.setWithdrawalType(pileMerchantInfo.getDelayMode());
|
merchantWithdrawalTypeVO.setWithdrawalType(pileMerchantInfo.getWithdrawalType());
|
||||||
merchantWithdrawalTypeVO.setReservedAmount(pileMerchantInfo.getReservedAmount());
|
merchantWithdrawalTypeVO.setReservedAmount(pileMerchantInfo.getReservedAmount());
|
||||||
return merchantWithdrawalTypeVO;
|
return merchantWithdrawalTypeVO;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -835,7 +835,7 @@
|
|||||||
</if>
|
</if>
|
||||||
</trim>
|
</trim>
|
||||||
</insert>
|
</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="id" property="id" />
|
||||||
<result column="merchant_name" property="merchantName" />
|
<result column="merchant_name" property="merchantName" />
|
||||||
<result column="merchant_level" property="merchantLevel" />
|
<result column="merchant_level" property="merchantLevel" />
|
||||||
@@ -864,7 +864,7 @@
|
|||||||
from pile_merchant_info
|
from pile_merchant_info
|
||||||
</sql>
|
</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" />
|
<include refid="selectPileMerchantInfoVo" />
|
||||||
<where>
|
<where>
|
||||||
del_flag = '0'
|
del_flag = '0'
|
||||||
@@ -905,13 +905,13 @@
|
|||||||
</where>
|
</where>
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
<select id="selectPileMerchantInfoById" parameterType="Long" resultMap="PileMerchantInfoResult">
|
<select id="selectPileMerchantInfoById" parameterType="Long" resultMap="BaseResultMap">
|
||||||
<include refid="selectPileMerchantInfoVo" />
|
<include refid="selectPileMerchantInfoVo" />
|
||||||
where id = #{id}
|
where id = #{id}
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
|
|
||||||
<select id="selectPileMerchantInfoListByIdList" resultMap="PileMerchantInfoResult">
|
<select id="selectPileMerchantInfoListByIdList" resultMap="BaseResultMap">
|
||||||
select
|
select
|
||||||
<include refid="Base_Column_List" />
|
<include refid="Base_Column_List" />
|
||||||
from pile_merchant_info
|
from pile_merchant_info
|
||||||
@@ -1125,7 +1125,7 @@
|
|||||||
</foreach>
|
</foreach>
|
||||||
</delete>
|
</delete>
|
||||||
|
|
||||||
<select id="selectPileMerchantInfoByWxAppId" resultMap="PileMerchantInfoResult">
|
<select id="selectPileMerchantInfoByWxAppId" resultMap="BaseResultMap">
|
||||||
select
|
select
|
||||||
<include refid="Base_Column_List" />
|
<include refid="Base_Column_List" />
|
||||||
from pile_merchant_info
|
from pile_merchant_info
|
||||||
@@ -1149,7 +1149,7 @@
|
|||||||
</if>
|
</if>
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
<select id="queryInfoByDeptId" resultMap="PileMerchantInfoResult">
|
<select id="queryInfoByDeptId" resultMap="BaseResultMap">
|
||||||
select
|
select
|
||||||
<include refid="Base_Column_List" />
|
<include refid="Base_Column_List" />
|
||||||
from pile_merchant_info
|
from pile_merchant_info
|
||||||
@@ -1157,7 +1157,7 @@
|
|||||||
and dept_id = #{deptId,jdbcType=VARCHAR}
|
and dept_id = #{deptId,jdbcType=VARCHAR}
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
<select id="queryInfoListByIds" resultMap="PileMerchantInfoResult">
|
<select id="queryInfoListByIds" resultMap="BaseResultMap">
|
||||||
select
|
select
|
||||||
<include refid="Base_Column_List" />
|
<include refid="Base_Column_List" />
|
||||||
from
|
from
|
||||||
@@ -1171,7 +1171,7 @@
|
|||||||
</if>
|
</if>
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
<select id="queryFirstLevelMerchantList" resultMap="PileMerchantInfoResult">
|
<select id="queryFirstLevelMerchantList" resultMap="BaseResultMap">
|
||||||
select
|
select
|
||||||
<include refid="Base_Column_List" />
|
<include refid="Base_Column_List" />
|
||||||
from
|
from
|
||||||
@@ -1180,7 +1180,7 @@
|
|||||||
and merchant_level = '1'
|
and merchant_level = '1'
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
<select id="getFirstLevelMerchantByWxAppId" resultMap="PileMerchantInfoResult">
|
<select id="getFirstLevelMerchantByWxAppId" resultMap="BaseResultMap">
|
||||||
select
|
select
|
||||||
<include refid="Base_Column_List" />
|
<include refid="Base_Column_List" />
|
||||||
from
|
from
|
||||||
@@ -1190,7 +1190,7 @@
|
|||||||
and app_id = #{wxAppId,jdbcType=VARCHAR}
|
and app_id = #{wxAppId,jdbcType=VARCHAR}
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
<select id="getFirstLevelMerchantByAlipayAppId" resultMap="PileMerchantInfoResult">
|
<select id="getFirstLevelMerchantByAlipayAppId" resultMap="BaseResultMap">
|
||||||
select
|
select
|
||||||
<include refid="Base_Column_List" />
|
<include refid="Base_Column_List" />
|
||||||
from
|
from
|
||||||
@@ -1248,7 +1248,7 @@
|
|||||||
</if>
|
</if>
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
<select id="selectListByFirstMerchant" resultMap="PileMerchantInfoResult">
|
<select id="selectListByFirstMerchant" resultMap="BaseResultMap">
|
||||||
select <include refid="Base_Column_List" />
|
select <include refid="Base_Column_List" />
|
||||||
from pile_merchant_info
|
from pile_merchant_info
|
||||||
where del_flag = '0'
|
where del_flag = '0'
|
||||||
|
|||||||
Reference in New Issue
Block a user