新增提现渠道

This commit is contained in:
墨大叔 2024-08-02 14:03:28 +08:00
parent 8990eb3297
commit 4fd545fdcb
9 changed files with 493 additions and 3 deletions

View File

@ -0,0 +1,45 @@
package com.ruoyi.ss.channelWithdraw.domain;
import java.math.BigDecimal;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.core.domain.BaseEntity;
/**
* 提现渠道对象 ss_channel_withdraw
*
* @author ruoyi
* @date 2024-08-02
*/
@Data
public class ChannelWithdraw extends BaseEntity
{
private static final long serialVersionUID = 1L;
@ApiModelProperty("${comment}")
private Long channelId;
@Excel(name = "渠道名称")
@ApiModelProperty("渠道名称")
private String name;
@Excel(name = "对应账户类型")
@ApiModelProperty("对应账户类型")
private String accountType;
@Excel(name = "服务费收取类型")
@ApiModelProperty("服务费收取类型")
private String serviceType;
@Excel(name = "服务费")
@ApiModelProperty("服务费")
private BigDecimal serviceRate;
@Excel(name = "是否启用")
@ApiModelProperty("是否启用")
private Integer enabled;
}

View File

@ -0,0 +1,11 @@
package com.ruoyi.ss.channelWithdraw.domain;
import lombok.Data;
/**
* @author wjh
* 2024/8/2
*/
@Data
public class ChannelWithdrawQuery extends ChannelWithdraw{
}

View File

@ -0,0 +1,11 @@
package com.ruoyi.ss.channelWithdraw.domain;
import lombok.Data;
/**
* @author wjh
* 2024/8/2
*/
@Data
public class ChannelWithdrawVO extends ChannelWithdraw{
}

View File

@ -0,0 +1,64 @@
package com.ruoyi.ss.channelWithdraw.mapper;
import java.util.List;
import com.ruoyi.ss.channelWithdraw.domain.ChannelWithdraw;
import com.ruoyi.ss.channelWithdraw.domain.ChannelWithdrawVO;
import com.ruoyi.ss.channelWithdraw.domain.ChannelWithdrawQuery;
import org.apache.ibatis.annotations.Param;
/**
* 提现渠道Mapper接口
*
* @author ruoyi
* @date 2024-08-02
*/
public interface ChannelWithdrawMapper
{
/**
* 查询提现渠道
*
* @param channelId 提现渠道主键
* @return 提现渠道
*/
public ChannelWithdrawVO selectChannelWithdrawByChannelId(Long channelId);
/**
* 查询提现渠道列表
*
* @param query 提现渠道
* @return 提现渠道集合
*/
public List<ChannelWithdrawVO> selectChannelWithdrawList(@Param("query")ChannelWithdrawQuery query);
/**
* 新增提现渠道
*
* @param channelWithdraw 提现渠道
* @return 结果
*/
public int insertChannelWithdraw(ChannelWithdraw channelWithdraw);
/**
* 修改提现渠道
*
* @param channelWithdraw 提现渠道
* @return 结果
*/
public int updateChannelWithdraw(@Param("data") ChannelWithdraw channelWithdraw);
/**
* 删除提现渠道
*
* @param channelId 提现渠道主键
* @return 结果
*/
public int deleteChannelWithdrawByChannelId(Long channelId);
/**
* 批量删除提现渠道
*
* @param channelIds 需要删除的数据主键集合
* @return 结果
*/
public int deleteChannelWithdrawByChannelIds(Long[] channelIds);
}

View File

@ -0,0 +1,80 @@
<?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.ss.channelWithdraw.mapper.ChannelWithdrawMapper">
<resultMap type="ChannelWithdrawVO" id="ChannelWithdrawResult" autoMapping="true"/>
<sql id="selectChannelWithdrawVo">
select
scw.channel_id,
scw.name,
scw.account_type,
scw.service_type,
scw.service_rate,
scw.enabled
from ss_channel_withdraw scw
</sql>
<sql id="searchCondition">
<if test="query.channelId != null "> and scw.channel_id = #{query.channelId}</if>
<if test="query.name != null and query.name != ''"> and scw.name like concat('%', #{query.name}, '%')</if>
<if test="query.accountType != null and query.accountType != ''"> and scw.account_type = #{query.accountType}</if>
<if test="query.serviceType != null and query.serviceType != ''"> and scw.service_type = #{query.serviceType}</if>
<if test="query.enabled != null "> and scw.enabled = #{query.enabled}</if>
</sql>
<select id="selectChannelWithdrawList" parameterType="ChannelWithdrawQuery" resultMap="ChannelWithdrawResult">
<include refid="selectChannelWithdrawVo"/>
<where>
<include refid="searchCondition"/>
</where>
</select>
<select id="selectChannelWithdrawByChannelId" parameterType="Long" resultMap="ChannelWithdrawResult">
<include refid="selectChannelWithdrawVo"/>
where channel_id = #{channelId}
</select>
<insert id="insertChannelWithdraw" parameterType="ChannelWithdraw" useGeneratedKeys="true" keyProperty="channelId">
insert into ss_channel_withdraw
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="name != null and name != ''">name,</if>
<if test="accountType != null and accountType != ''">account_type,</if>
<if test="serviceType != null and serviceType != ''">service_type,</if>
<if test="serviceRate != null">service_rate,</if>
<if test="enabled != null">enabled,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="name != null and name != ''">#{name},</if>
<if test="accountType != null and accountType != ''">#{accountType},</if>
<if test="serviceType != null and serviceType != ''">#{serviceType},</if>
<if test="serviceRate != null">#{serviceRate},</if>
<if test="enabled != null">#{enabled},</if>
</trim>
</insert>
<update id="updateChannelWithdraw" parameterType="ChannelWithdraw">
update ss_channel_withdraw
<trim prefix="SET" suffixOverrides=",">
<if test="data.name != null and data.name != ''">name = #{data.name},</if>
<if test="data.accountType != null and data.accountType != ''">account_type = #{data.accountType},</if>
<if test="data.serviceType != null and data.serviceType != ''">service_type = #{data.serviceType},</if>
<if test="data.serviceRate != null">service_rate = #{data.serviceRate},</if>
<if test="data.enabled != null">enabled = #{data.enabled},</if>
</trim>
where channel_id = #{channelId}
</update>
<delete id="deleteChannelWithdrawByChannelId" parameterType="Long">
delete from ss_channel_withdraw where channel_id = #{channelId}
</delete>
<delete id="deleteChannelWithdrawByChannelIds" parameterType="String">
delete from ss_channel_withdraw where channel_id in
<foreach item="channelId" collection="array" open="(" separator="," close=")">
#{channelId}
</foreach>
</delete>
</mapper>

View File

@ -0,0 +1,63 @@
package com.ruoyi.ss.channelWithdraw.service;
import java.util.List;
import com.ruoyi.ss.channelWithdraw.domain.ChannelWithdraw;
import com.ruoyi.ss.channelWithdraw.domain.ChannelWithdrawVO;
import com.ruoyi.ss.channelWithdraw.domain.ChannelWithdrawQuery;
/**
* 提现渠道Service接口
*
* @author ruoyi
* @date 2024-08-02
*/
public interface ChannelWithdrawService
{
/**
* 查询提现渠道
*
* @param channelId 提现渠道主键
* @return 提现渠道
*/
public ChannelWithdrawVO selectChannelWithdrawByChannelId(Long channelId);
/**
* 查询提现渠道列表
*
* @param channelWithdraw 提现渠道
* @return 提现渠道集合
*/
public List<ChannelWithdrawVO> selectChannelWithdrawList(ChannelWithdrawQuery channelWithdraw);
/**
* 新增提现渠道
*
* @param channelWithdraw 提现渠道
* @return 结果
*/
public int insertChannelWithdraw(ChannelWithdraw channelWithdraw);
/**
* 修改提现渠道
*
* @param channelWithdraw 提现渠道
* @return 结果
*/
public int updateChannelWithdraw(ChannelWithdraw channelWithdraw);
/**
* 批量删除提现渠道
*
* @param channelIds 需要删除的提现渠道主键集合
* @return 结果
*/
public int deleteChannelWithdrawByChannelIds(Long[] channelIds);
/**
* 删除提现渠道信息
*
* @param channelId 提现渠道主键
* @return 结果
*/
public int deleteChannelWithdrawByChannelId(Long channelId);
}

View File

@ -0,0 +1,95 @@
package com.ruoyi.ss.channelWithdraw.service.impl;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.ruoyi.ss.channelWithdraw.mapper.ChannelWithdrawMapper;
import com.ruoyi.ss.channelWithdraw.domain.ChannelWithdraw;
import com.ruoyi.ss.channelWithdraw.domain.ChannelWithdrawVO;
import com.ruoyi.ss.channelWithdraw.domain.ChannelWithdrawQuery;
import com.ruoyi.ss.channelWithdraw.service.ChannelWithdrawService;
/**
* 提现渠道Service业务层处理
*
* @author ruoyi
* @date 2024-08-02
*/
@Service
public class ChannelWithdrawServiceImpl implements ChannelWithdrawService
{
@Autowired
private ChannelWithdrawMapper channelWithdrawMapper;
/**
* 查询提现渠道
*
* @param channelId 提现渠道主键
* @return 提现渠道
*/
@Override
public ChannelWithdrawVO selectChannelWithdrawByChannelId(Long channelId)
{
return channelWithdrawMapper.selectChannelWithdrawByChannelId(channelId);
}
/**
* 查询提现渠道列表
*
* @param channelWithdraw 提现渠道
* @return 提现渠道
*/
@Override
public List<ChannelWithdrawVO> selectChannelWithdrawList(ChannelWithdrawQuery channelWithdraw)
{
return channelWithdrawMapper.selectChannelWithdrawList(channelWithdraw);
}
/**
* 新增提现渠道
*
* @param channelWithdraw 提现渠道
* @return 结果
*/
@Override
public int insertChannelWithdraw(ChannelWithdraw channelWithdraw)
{
return channelWithdrawMapper.insertChannelWithdraw(channelWithdraw);
}
/**
* 修改提现渠道
*
* @param channelWithdraw 提现渠道
* @return 结果
*/
@Override
public int updateChannelWithdraw(ChannelWithdraw channelWithdraw)
{
return channelWithdrawMapper.updateChannelWithdraw(channelWithdraw);
}
/**
* 批量删除提现渠道
*
* @param channelIds 需要删除的提现渠道主键
* @return 结果
*/
@Override
public int deleteChannelWithdrawByChannelIds(Long[] channelIds)
{
return channelWithdrawMapper.deleteChannelWithdrawByChannelIds(channelIds);
}
/**
* 删除提现渠道信息
*
* @param channelId 提现渠道主键
* @return 结果
*/
@Override
public int deleteChannelWithdrawByChannelId(Long channelId)
{
return channelWithdrawMapper.deleteChannelWithdrawByChannelId(channelId);
}
}

View File

@ -0,0 +1,107 @@
package com.ruoyi.web.controller.ss;
import java.util.List;
import javax.servlet.http.HttpServletResponse;
import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.PutMapping;
import org.springframework.web.bind.annotation.DeleteMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import com.ruoyi.common.annotation.Log;
import com.ruoyi.common.core.controller.BaseController;
import com.ruoyi.common.core.domain.AjaxResult;
import com.ruoyi.common.enums.BusinessType;
import com.ruoyi.ss.channelWithdraw.domain.ChannelWithdraw;
import com.ruoyi.ss.channelWithdraw.domain.ChannelWithdrawVO;
import com.ruoyi.ss.channelWithdraw.domain.ChannelWithdrawQuery;
import com.ruoyi.ss.channelWithdraw.service.ChannelWithdrawService;
import com.ruoyi.common.utils.poi.ExcelUtil;
import com.ruoyi.common.core.page.TableDataInfo;
/**
* 提现渠道Controller
*
* @author ruoyi
* @date 2024-08-02
*/
@RestController
@RequestMapping("/ss/channelWithdraw")
public class ChannelWithdrawController extends BaseController
{
@Autowired
private ChannelWithdrawService channelWithdrawService;
/**
* 查询提现渠道列表
*/
@PreAuthorize("@ss.hasPermi('ss:channelWithdraw:list')")
@GetMapping("/list")
public TableDataInfo list(ChannelWithdrawQuery query)
{
startPage();
startOrderBy();
List<ChannelWithdrawVO> list = channelWithdrawService.selectChannelWithdrawList(query);
return getDataTable(list);
}
/**
* 导出提现渠道列表
*/
@PreAuthorize("@ss.hasPermi('ss:channelWithdraw:export')")
@Log(title = "提现渠道", businessType = BusinessType.EXPORT)
@PostMapping("/export")
public void export(HttpServletResponse response, ChannelWithdrawQuery query)
{
List<ChannelWithdrawVO> list = channelWithdrawService.selectChannelWithdrawList(query);
ExcelUtil<ChannelWithdrawVO> util = new ExcelUtil<ChannelWithdrawVO>(ChannelWithdrawVO.class);
util.exportExcel(response, list, "提现渠道数据");
}
/**
* 获取提现渠道详细信息
*/
@PreAuthorize("@ss.hasPermi('ss:channelWithdraw:query')")
@GetMapping(value = "/{channelId}")
public AjaxResult getInfo(@PathVariable("channelId") Long channelId)
{
return success(channelWithdrawService.selectChannelWithdrawByChannelId(channelId));
}
/**
* 新增提现渠道
*/
@PreAuthorize("@ss.hasPermi('ss:channelWithdraw:add')")
@Log(title = "提现渠道", businessType = BusinessType.INSERT)
@PostMapping
public AjaxResult add(@RequestBody ChannelWithdraw channelWithdraw)
{
return toAjax(channelWithdrawService.insertChannelWithdraw(channelWithdraw));
}
/**
* 修改提现渠道
*/
@PreAuthorize("@ss.hasPermi('ss:channelWithdraw:edit')")
@Log(title = "提现渠道", businessType = BusinessType.UPDATE)
@PutMapping
public AjaxResult edit(@RequestBody ChannelWithdraw channelWithdraw)
{
return toAjax(channelWithdrawService.updateChannelWithdraw(channelWithdraw));
}
/**
* 删除提现渠道
*/
@PreAuthorize("@ss.hasPermi('ss:channelWithdraw:remove')")
@Log(title = "提现渠道", businessType = BusinessType.DELETE)
@DeleteMapping("/{channelIds}")
public AjaxResult remove(@PathVariable Long[] channelIds)
{
return toAjax(channelWithdrawService.deleteChannelWithdrawByChannelIds(channelIds));
}
}

View File

@ -60,8 +60,22 @@ spring:
# 云商通配置
yst:
# appid
appId: xx
appId: 21762000921804636162
# 云商通二代分配的服务商应用ID
spAppId: xx
spAppId: ""
# 域名
host: https://ibsapi.allinpay.com
host: http://116.228.64.55:28082
# 格式化
format: json
# 字符集
charset: UTF-8
# 签名方式
signType: SM3withSM2
# API版本
version: 1.0
# 秘钥
secret-key: 878427523d3525e070298d44481b8d2e
# 私钥
private-key: MIGTAgEAMBMGByqGSM49AgEGCCqBHM9VAYItBHkwdwIBAQQgiaZmB+feACtziE8SYjVZsaQwLNLRiyO8ebSupeoWIF2gCgYIKoEcz1UBgi2hRANCAATwEo0zq6KaB992PToWeJH52LmfS0sFovnB8/LMaoIAOTlFJtA3YgjWXKlO3KT+GqOCfCC4xE60isCr28tqy7hM
# 公钥
public-key: MFkwEwYHKoZIzj0CAQYIKoEcz1UBgi0DQgAEu9LNkJlyLtjJxtQWIGlcZ/hyHt5eZ7LEH1nfOiK1H9HsE1cMPu5KK5jZVTtAyc7lPMXixUMirf6A3tMbuMbgqg==