1. 支付渠道
This commit is contained in:
parent
4cde481530
commit
e3d50cf74e
|
@ -0,0 +1,88 @@
|
|||
//package com.ruoyi.web.controller.system;
|
||||
//
|
||||
//import com.ruoyi.common.annotation.Log;
|
||||
//import com.ruoyi.common.core.controller.BaseController;
|
||||
//import com.ruoyi.common.core.domain.AjaxResult;
|
||||
//import com.ruoyi.common.core.domain.ValidGroup;
|
||||
//import com.ruoyi.common.core.page.TableDataInfo;
|
||||
//import com.ruoyi.common.enums.BusinessType;
|
||||
//import com.ruoyi.common.utils.poi.ExcelUtil;
|
||||
//import com.ruoyi.ss.channel.domain.Channel;
|
||||
//import com.ruoyi.ss.channel.domain.ChannelQuery;
|
||||
//import com.ruoyi.ss.channel.domain.ChannelVO;
|
||||
//import com.ruoyi.ss.channel.service.ChannelService;
|
||||
//import org.springframework.beans.factory.annotation.Autowired;
|
||||
//import org.springframework.security.access.prepost.PreAuthorize;
|
||||
//import org.springframework.validation.annotation.Validated;
|
||||
//import org.springframework.web.bind.annotation.*;
|
||||
//
|
||||
//import javax.servlet.http.HttpServletResponse;
|
||||
//import java.util.List;
|
||||
//
|
||||
///**
|
||||
// * 充值渠道Controller
|
||||
// *
|
||||
// * @author ruoyi
|
||||
// * @date 2024-04-15
|
||||
// */
|
||||
//@RestController
|
||||
//@RequestMapping("/system/channel")
|
||||
//public class SmChannelController extends BaseController
|
||||
//{
|
||||
// @Autowired
|
||||
// private ChannelService smChannelService;
|
||||
//
|
||||
// /**
|
||||
// * 查询充值渠道列表
|
||||
// */
|
||||
// @PreAuthorize("@ss.hasPermi('system:channel:list')")
|
||||
// @GetMapping("/list")
|
||||
// public TableDataInfo list(ChannelQuery smChannel)
|
||||
// {
|
||||
// startPage();
|
||||
// List<ChannelVO> list = smChannelService.selectSmChannelList(smChannel);
|
||||
// return getDataTable(list);
|
||||
// }
|
||||
//
|
||||
// /**
|
||||
// * 导出充值渠道列表
|
||||
// */
|
||||
// @PreAuthorize("@ss.hasPermi('system:channel:export')")
|
||||
// @Log(title = "充值渠道", businessType = BusinessType.EXPORT)
|
||||
// @PostMapping("/export")
|
||||
// public void export(HttpServletResponse response, ChannelQuery smChannel)
|
||||
// {
|
||||
// List<ChannelVO> list = smChannelService.selectSmChannelList(smChannel);
|
||||
// ExcelUtil<ChannelVO> util = new ExcelUtil<ChannelVO>(ChannelVO.class);
|
||||
// util.exportExcel(response, list, "充值渠道数据");
|
||||
// }
|
||||
//
|
||||
// /**
|
||||
// * 获取充值渠道详细信息
|
||||
// */
|
||||
// @PreAuthorize("@ss.hasPermi('system:channel:query')")
|
||||
// @GetMapping(value = "/{channelId}")
|
||||
// public AjaxResult getInfo(@PathVariable("channelId") Long channelId)
|
||||
// {
|
||||
// return success(smChannelService.selectSmChannelByChannelId(channelId));
|
||||
// }
|
||||
//
|
||||
// /**
|
||||
// * 修改充值渠道
|
||||
// */
|
||||
// @PreAuthorize("@ss.hasPermi('system:channel:edit')")
|
||||
// @Log(title = "充值渠道", businessType = BusinessType.UPDATE)
|
||||
// @PutMapping
|
||||
// public AjaxResult edit(@RequestBody @Validated(ValidGroup.Update.class) Channel form)
|
||||
// {
|
||||
// Channel channel = new Channel();
|
||||
// channel.setChannelId(form.getChannelId());
|
||||
// channel.setEnabled(form.getEnabled());
|
||||
// channel.setServiceRate(form.getServiceRate());
|
||||
// channel.setCostRate(form.getCostRate());
|
||||
// channel.setServiceType(form.getServiceType());
|
||||
// channel.setPicture(form.getPicture());
|
||||
// return toAjax(smChannelService.updateSmChannel(channel));
|
||||
// }
|
||||
//
|
||||
//}
|
|
@ -0,0 +1,65 @@
|
|||
package com.ruoyi.system.mapper;
|
||||
|
||||
//import com.ruoyi.ss.channel.domain.Channel;
|
||||
//import com.ruoyi.ss.channel.domain.ChannelQuery;
|
||||
//import com.ruoyi.ss.channel.domain.ChannelVO;
|
||||
//import org.apache.ibatis.annotations.Param;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 充值渠道Mapper接口
|
||||
*
|
||||
* @author ruoyi
|
||||
* @date 2024-04-15
|
||||
*/
|
||||
public interface ChannelMapper
|
||||
{
|
||||
// /**
|
||||
// * 查询充值渠道
|
||||
// *
|
||||
// * @param channelId 充值渠道主键
|
||||
// * @return 充值渠道
|
||||
// */
|
||||
// public ChannelVO selectSmChannelByChannelId(Long channelId);
|
||||
//
|
||||
// /**
|
||||
// * 查询充值渠道列表
|
||||
// *
|
||||
// * @param smChannel 充值渠道
|
||||
// * @return 充值渠道集合
|
||||
// */
|
||||
// public List<ChannelVO> selectSmChannelList(@Param("query") ChannelQuery smChannel);
|
||||
//
|
||||
// /**
|
||||
// * 新增充值渠道
|
||||
// *
|
||||
// * @param channel 充值渠道
|
||||
// * @return 结果
|
||||
// */
|
||||
// public int insertSmChannel(Channel channel);
|
||||
//
|
||||
// /**
|
||||
// * 修改充值渠道
|
||||
// *
|
||||
// * @param channel 充值渠道
|
||||
// * @return 结果
|
||||
// */
|
||||
// public int updateSmChannel(@Param("data") Channel channel);
|
||||
//
|
||||
// /**
|
||||
// * 删除充值渠道
|
||||
// *
|
||||
// * @param channelId 充值渠道主键
|
||||
// * @return 结果
|
||||
// */
|
||||
// public int deleteSmChannelByChannelId(Long channelId);
|
||||
//
|
||||
// /**
|
||||
// * 批量删除充值渠道
|
||||
// *
|
||||
// * @param channelIds 需要删除的数据主键集合
|
||||
// * @return 结果
|
||||
// */
|
||||
// public int deleteSmChannelByChannelIds(Long[] channelIds);
|
||||
}
|
|
@ -0,0 +1,82 @@
|
|||
//package com.ruoyi.system.service;
|
||||
//
|
||||
//import com.ruoyi.ss.channel.domain.Channel;
|
||||
//import com.ruoyi.ss.channel.domain.ChannelQuery;
|
||||
//import com.ruoyi.ss.channel.domain.ChannelVO;
|
||||
//
|
||||
//import java.util.List;
|
||||
//import java.util.Map;
|
||||
//import java.util.function.Function;
|
||||
//
|
||||
///**
|
||||
// * 充值渠道Service接口
|
||||
// *
|
||||
// * @author ruoyi
|
||||
// * @date 2024-04-15
|
||||
// */
|
||||
//public interface ChannelService
|
||||
//{
|
||||
// /**
|
||||
// * 查询充值渠道
|
||||
// *
|
||||
// * @param channelId 充值渠道主键
|
||||
// * @return 充值渠道
|
||||
// */
|
||||
// public ChannelVO selectSmChannelByChannelId(Long channelId);
|
||||
//
|
||||
// /**
|
||||
// * 查询充值渠道列表
|
||||
// *
|
||||
// * @param smChannel 充值渠道
|
||||
// * @return 充值渠道集合
|
||||
// */
|
||||
// public List<ChannelVO> selectSmChannelList(ChannelQuery smChannel);
|
||||
//
|
||||
// /**
|
||||
// * 新增充值渠道
|
||||
// *
|
||||
// * @param channel 充值渠道
|
||||
// * @return 结果
|
||||
// */
|
||||
// public int insertSmChannel(Channel channel);
|
||||
//
|
||||
// /**
|
||||
// * 修改充值渠道
|
||||
// *
|
||||
// * @param channel 充值渠道
|
||||
// * @return 结果
|
||||
// */
|
||||
// public int updateSmChannel(Channel channel);
|
||||
//
|
||||
// /**
|
||||
// * 批量删除充值渠道
|
||||
// *
|
||||
// * @param channelIds 需要删除的充值渠道主键集合
|
||||
// * @return 结果
|
||||
// */
|
||||
// public int deleteSmChannelByChannelIds(Long[] channelIds);
|
||||
//
|
||||
// /**
|
||||
// * 删除充值渠道信息
|
||||
// *
|
||||
// * @param channelId 充值渠道主键
|
||||
// * @return 结果
|
||||
// */
|
||||
// public int deleteSmChannelByChannelId(Long channelId);
|
||||
//
|
||||
// /**
|
||||
// * 查询启用的充值渠道列表
|
||||
// *
|
||||
// * @return
|
||||
// */
|
||||
// List<ChannelVO> selectEnabledRechargeList();
|
||||
//
|
||||
// /**
|
||||
// * 查询充值渠道映射表
|
||||
// *
|
||||
// * @param query 查询条件
|
||||
// * @param keyMapper 映射函数
|
||||
// */
|
||||
// <K> Map<K, ChannelVO> selectMap(ChannelQuery query, Function<? super Channel, ? extends K> keyMapper);
|
||||
//
|
||||
//}
|
|
@ -0,0 +1,127 @@
|
|||
//package com.ruoyi.system.service.impl;
|
||||
//
|
||||
//import com.ruoyi.common.utils.collection.CollectionUtils;
|
||||
//import com.ruoyi.ss.account.service.AccountService;
|
||||
//import com.ruoyi.ss.channel.domain.Channel;
|
||||
//import com.ruoyi.ss.channel.domain.ChannelQuery;
|
||||
//import com.ruoyi.ss.channel.domain.ChannelVO;
|
||||
//import com.ruoyi.ss.channel.mapper.ChannelMapper;
|
||||
//import com.ruoyi.ss.channel.service.ChannelService;
|
||||
//import org.springframework.beans.factory.annotation.Autowired;
|
||||
//import org.springframework.stereotype.Service;
|
||||
//
|
||||
//import java.util.Collections;
|
||||
//import java.util.List;
|
||||
//import java.util.Map;
|
||||
//import java.util.function.Function;
|
||||
//import java.util.stream.Collectors;
|
||||
//
|
||||
///**
|
||||
// * 充值渠道Service业务层处理
|
||||
// *
|
||||
// * @author ruoyi
|
||||
// * @date 2024-04-15
|
||||
// */
|
||||
//@Service
|
||||
//public class ChannelServiceImpl implements ChannelService
|
||||
//{
|
||||
// @Autowired
|
||||
// private ChannelMapper channelMapper;
|
||||
//
|
||||
// @Autowired
|
||||
// private AccountService accountService;
|
||||
//
|
||||
// /**
|
||||
// * 查询充值渠道
|
||||
// *
|
||||
// * @param channelId 充值渠道主键
|
||||
// * @return 充值渠道
|
||||
// */
|
||||
// @Override
|
||||
// public ChannelVO selectSmChannelByChannelId(Long channelId)
|
||||
// {
|
||||
// return channelMapper.selectSmChannelByChannelId(channelId);
|
||||
// }
|
||||
//
|
||||
// /**
|
||||
// * 查询充值渠道列表
|
||||
// *
|
||||
// * @param smChannel 充值渠道
|
||||
// * @return 充值渠道
|
||||
// */
|
||||
// @Override
|
||||
// public List<ChannelVO> selectSmChannelList(ChannelQuery smChannel)
|
||||
// {
|
||||
// return channelMapper.selectSmChannelList(smChannel);
|
||||
// }
|
||||
//
|
||||
// /**
|
||||
// * 新增充值渠道
|
||||
// *
|
||||
// * @param channel 充值渠道
|
||||
// * @return 结果
|
||||
// */
|
||||
// @Override
|
||||
// public int insertSmChannel(Channel channel)
|
||||
// {
|
||||
// return channelMapper.insertSmChannel(channel);
|
||||
// }
|
||||
//
|
||||
// /**
|
||||
// * 修改充值渠道
|
||||
// *
|
||||
// * @param channel 充值渠道
|
||||
// * @return 结果
|
||||
// */
|
||||
// @Override
|
||||
// public int updateSmChannel(Channel channel)
|
||||
// {
|
||||
// return channelMapper.updateSmChannel(channel);
|
||||
// }
|
||||
//
|
||||
// /**
|
||||
// * 批量删除充值渠道
|
||||
// *
|
||||
// * @param channelIds 需要删除的充值渠道主键
|
||||
// * @return 结果
|
||||
// */
|
||||
// @Override
|
||||
// public int deleteSmChannelByChannelIds(Long[] channelIds)
|
||||
// {
|
||||
// return channelMapper.deleteSmChannelByChannelIds(channelIds);
|
||||
// }
|
||||
//
|
||||
// /**
|
||||
// * 删除充值渠道信息
|
||||
// *
|
||||
// * @param channelId 充值渠道主键
|
||||
// * @return 结果
|
||||
// */
|
||||
// @Override
|
||||
// public int deleteSmChannelByChannelId(Long channelId)
|
||||
// {
|
||||
// return channelMapper.deleteSmChannelByChannelId(channelId);
|
||||
// }
|
||||
//
|
||||
// @Override
|
||||
// public List<ChannelVO> selectEnabledRechargeList() {
|
||||
// ChannelQuery dto = new ChannelQuery();
|
||||
// dto.setEnabled(true);
|
||||
// return this.selectSmChannelList(dto);
|
||||
// }
|
||||
//
|
||||
// /**
|
||||
// * 查询充值渠道映射表
|
||||
// *
|
||||
// * @param query 查询条件
|
||||
// * @param keyMapper 映射函数
|
||||
// */
|
||||
// @Override
|
||||
// public <K> Map<K, ChannelVO> selectMap(ChannelQuery query, Function<? super Channel, ? extends K> keyMapper) {
|
||||
// List<ChannelVO> list = this.selectSmChannelList(query);
|
||||
// if (CollectionUtils.isEmptyElement(list)) {
|
||||
// return Collections.emptyMap();
|
||||
// }
|
||||
// return list.stream().collect(Collectors.toMap(keyMapper, item -> item));
|
||||
// }
|
||||
//}
|
|
@ -0,0 +1,93 @@
|
|||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<!DOCTYPE mapper
|
||||
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.ruoyi.system.mapper.ChannelMapper">
|
||||
|
||||
<!-- <resultMap type="ChannelVO" id="SmChannelResult" autoMapping="true">-->
|
||||
<!-- <result property="serviceRate" column="service_rate" typeHandler="com.ruoyi.system.mapper.typehandler.NonNullDecimalTypeHandler"/>-->
|
||||
<!-- <result property="costRate" column="cost_rate" typeHandler="com.ruoyi.system.mapper.typehandler.NonNullDecimalTypeHandler"/>-->
|
||||
<!-- </resultMap>-->
|
||||
|
||||
<!-- <sql id="selectSmChannelVo">-->
|
||||
<!-- select-->
|
||||
<!-- sc.channel_id,-->
|
||||
<!-- sc.name,-->
|
||||
<!-- sc.enabled,-->
|
||||
<!-- sc.service_rate,-->
|
||||
<!-- sc.cost_rate,-->
|
||||
<!-- sc.service_type,-->
|
||||
<!-- sc.picture-->
|
||||
<!-- from sm_channel sc-->
|
||||
<!-- </sql>-->
|
||||
|
||||
<!-- <sql id="searchCondition">-->
|
||||
<!-- <if test="query.name != null and query.name != ''"> and sc.name like concat('%', #{query.name}, '%')</if>-->
|
||||
<!-- <if test="query.enabled != null "> and sc.enabled = #{query.enabled}</if>-->
|
||||
<!-- <if test="query.serviceType != null and query.serviceType != ''"> and sc.service_type = #{query.serviceType}</if>-->
|
||||
<!-- <if test="query.channelIds != null and query.channelIds.size() > 0 ">-->
|
||||
<!-- and sc.channel_id in-->
|
||||
<!-- <foreach item="item" collection="query.channelIds" open="(" separator="," close=")">-->
|
||||
<!-- #{item}-->
|
||||
<!-- </foreach>-->
|
||||
<!-- </if>-->
|
||||
<!-- </sql>-->
|
||||
|
||||
<!-- <select id="selectSmChannelList" parameterType="ChannelQuery" resultMap="SmChannelResult">-->
|
||||
<!-- <include refid="selectSmChannelVo"/>-->
|
||||
<!-- <where>-->
|
||||
<!-- <include refid="searchCondition"/>-->
|
||||
<!-- </where>-->
|
||||
<!-- </select>-->
|
||||
|
||||
<!-- <select id="selectSmChannelByChannelId" parameterType="Long" resultMap="SmChannelResult">-->
|
||||
<!-- <include refid="selectSmChannelVo"/>-->
|
||||
<!-- where sc.channel_id = #{channelId}-->
|
||||
<!-- </select>-->
|
||||
|
||||
<!-- <insert id="insertSmChannel" parameterType="Channel">-->
|
||||
<!-- insert into sm_channel-->
|
||||
<!-- <trim prefix="(" suffix=")" suffixOverrides=",">-->
|
||||
<!-- <if test="channelId != null">channel_id,</if>-->
|
||||
<!-- <if test="name != null">`name`,</if>-->
|
||||
<!-- <if test="enabled != null">enabled,</if>-->
|
||||
<!-- <if test="serviceRate != null">service_rate,</if>-->
|
||||
<!-- <if test="costRate != null">cost_rate,</if>-->
|
||||
<!-- <if test="serviceType != null">service_type,</if>-->
|
||||
<!-- <if test="picture != null">picture,</if>-->
|
||||
<!-- </trim>-->
|
||||
<!-- <trim prefix="values (" suffix=")" suffixOverrides=",">-->
|
||||
<!-- <if test="channelId != null">#{channelId},</if>-->
|
||||
<!-- <if test="name != null">#{name},</if>-->
|
||||
<!-- <if test="enabled != null">#{enabled},</if>-->
|
||||
<!-- <if test="serviceRate != null">#{serviceRate},</if>-->
|
||||
<!-- <if test="costRate != null">#{costRate},</if>-->
|
||||
<!-- <if test="serviceType != null">#{serviceType},</if>-->
|
||||
<!-- <if test="picture != null">#{picture},</if>-->
|
||||
<!-- </trim>-->
|
||||
<!-- </insert>-->
|
||||
|
||||
<!-- <update id="updateSmChannel" parameterType="Channel">-->
|
||||
<!-- update sm_channel-->
|
||||
<!-- <trim prefix="SET" suffixOverrides=",">-->
|
||||
<!-- <if test="data.name != null">name = #{data.name},</if>-->
|
||||
<!-- <if test="data.enabled != null">enabled = #{data.enabled},</if>-->
|
||||
<!-- <if test="data.serviceRate != null">service_rate = #{data.serviceRate},</if>-->
|
||||
<!-- <if test="data.costRate != null">cost_rate = #{data.costRate},</if>-->
|
||||
<!-- <if test="data.serviceType != null">service_type = #{data.serviceType},</if>-->
|
||||
<!-- <if test="data.picture != null">picture = #{data.picture},</if>-->
|
||||
<!-- </trim>-->
|
||||
<!-- where channel_id = #{data.channelId}-->
|
||||
<!-- </update>-->
|
||||
|
||||
<!-- <delete id="deleteSmChannelByChannelId" parameterType="Long">-->
|
||||
<!-- delete from sm_channel where channel_id = #{channelId}-->
|
||||
<!-- </delete>-->
|
||||
|
||||
<!-- <delete id="deleteSmChannelByChannelIds" parameterType="String">-->
|
||||
<!-- delete from sm_channel where channel_id in-->
|
||||
<!-- <foreach item="channelId" collection="array" open="(" separator="," close=")">-->
|
||||
<!-- #{channelId}-->
|
||||
<!-- </foreach>-->
|
||||
<!-- </delete>-->
|
||||
</mapper>
|
Loading…
Reference in New Issue
Block a user