From 4fd545fdcb98cefc841a45ff8dfa1ae23431c618 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=A2=A8=E5=A4=A7=E5=8F=94?= <494979559@qq.com> Date: Fri, 2 Aug 2024 14:03:28 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E6=8F=90=E7=8E=B0=E6=B8=A0?= =?UTF-8?q?=E9=81=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../domain/ChannelWithdraw.java | 45 ++++++++ .../domain/ChannelWithdrawQuery.java | 11 ++ .../domain/ChannelWithdrawVO.java | 11 ++ .../mapper/ChannelWithdrawMapper.java | 64 +++++++++++ .../mapper/ChannelWithdrawMapper.xml | 80 +++++++++++++ .../service/ChannelWithdrawService.java | 63 +++++++++++ .../impl/ChannelWithdrawServiceImpl.java | 95 ++++++++++++++++ .../ss/ChannelWithdrawController.java | 107 ++++++++++++++++++ .../src/main/resources/application-prod.yml | 20 +++- 9 files changed, 493 insertions(+), 3 deletions(-) create mode 100644 smart-switch-service/src/main/java/com/ruoyi/ss/channelWithdraw/domain/ChannelWithdraw.java create mode 100644 smart-switch-service/src/main/java/com/ruoyi/ss/channelWithdraw/domain/ChannelWithdrawQuery.java create mode 100644 smart-switch-service/src/main/java/com/ruoyi/ss/channelWithdraw/domain/ChannelWithdrawVO.java create mode 100644 smart-switch-service/src/main/java/com/ruoyi/ss/channelWithdraw/mapper/ChannelWithdrawMapper.java create mode 100644 smart-switch-service/src/main/java/com/ruoyi/ss/channelWithdraw/mapper/ChannelWithdrawMapper.xml create mode 100644 smart-switch-service/src/main/java/com/ruoyi/ss/channelWithdraw/service/ChannelWithdrawService.java create mode 100644 smart-switch-service/src/main/java/com/ruoyi/ss/channelWithdraw/service/impl/ChannelWithdrawServiceImpl.java create mode 100644 smart-switch-web/src/main/java/com/ruoyi/web/controller/ss/ChannelWithdrawController.java diff --git a/smart-switch-service/src/main/java/com/ruoyi/ss/channelWithdraw/domain/ChannelWithdraw.java b/smart-switch-service/src/main/java/com/ruoyi/ss/channelWithdraw/domain/ChannelWithdraw.java new file mode 100644 index 00000000..22a35838 --- /dev/null +++ b/smart-switch-service/src/main/java/com/ruoyi/ss/channelWithdraw/domain/ChannelWithdraw.java @@ -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; + +} diff --git a/smart-switch-service/src/main/java/com/ruoyi/ss/channelWithdraw/domain/ChannelWithdrawQuery.java b/smart-switch-service/src/main/java/com/ruoyi/ss/channelWithdraw/domain/ChannelWithdrawQuery.java new file mode 100644 index 00000000..1af7b821 --- /dev/null +++ b/smart-switch-service/src/main/java/com/ruoyi/ss/channelWithdraw/domain/ChannelWithdrawQuery.java @@ -0,0 +1,11 @@ +package com.ruoyi.ss.channelWithdraw.domain; + +import lombok.Data; + +/** + * @author wjh + * 2024/8/2 + */ +@Data +public class ChannelWithdrawQuery extends ChannelWithdraw{ +} diff --git a/smart-switch-service/src/main/java/com/ruoyi/ss/channelWithdraw/domain/ChannelWithdrawVO.java b/smart-switch-service/src/main/java/com/ruoyi/ss/channelWithdraw/domain/ChannelWithdrawVO.java new file mode 100644 index 00000000..f7e1e32e --- /dev/null +++ b/smart-switch-service/src/main/java/com/ruoyi/ss/channelWithdraw/domain/ChannelWithdrawVO.java @@ -0,0 +1,11 @@ +package com.ruoyi.ss.channelWithdraw.domain; + +import lombok.Data; + +/** + * @author wjh + * 2024/8/2 + */ +@Data +public class ChannelWithdrawVO extends ChannelWithdraw{ +} diff --git a/smart-switch-service/src/main/java/com/ruoyi/ss/channelWithdraw/mapper/ChannelWithdrawMapper.java b/smart-switch-service/src/main/java/com/ruoyi/ss/channelWithdraw/mapper/ChannelWithdrawMapper.java new file mode 100644 index 00000000..b1923c5e --- /dev/null +++ b/smart-switch-service/src/main/java/com/ruoyi/ss/channelWithdraw/mapper/ChannelWithdrawMapper.java @@ -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 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); +} diff --git a/smart-switch-service/src/main/java/com/ruoyi/ss/channelWithdraw/mapper/ChannelWithdrawMapper.xml b/smart-switch-service/src/main/java/com/ruoyi/ss/channelWithdraw/mapper/ChannelWithdrawMapper.xml new file mode 100644 index 00000000..dd2c48f9 --- /dev/null +++ b/smart-switch-service/src/main/java/com/ruoyi/ss/channelWithdraw/mapper/ChannelWithdrawMapper.xml @@ -0,0 +1,80 @@ + + + + + + + + select + scw.channel_id, + scw.name, + scw.account_type, + scw.service_type, + scw.service_rate, + scw.enabled + from ss_channel_withdraw scw + + + + and scw.channel_id = #{query.channelId} + and scw.name like concat('%', #{query.name}, '%') + and scw.account_type = #{query.accountType} + and scw.service_type = #{query.serviceType} + and scw.enabled = #{query.enabled} + + + + + + + + insert into ss_channel_withdraw + + name, + account_type, + service_type, + service_rate, + enabled, + + + #{name}, + #{accountType}, + #{serviceType}, + #{serviceRate}, + #{enabled}, + + + + + update ss_channel_withdraw + + name = #{data.name}, + account_type = #{data.accountType}, + service_type = #{data.serviceType}, + service_rate = #{data.serviceRate}, + enabled = #{data.enabled}, + + where channel_id = #{channelId} + + + + delete from ss_channel_withdraw where channel_id = #{channelId} + + + + delete from ss_channel_withdraw where channel_id in + + #{channelId} + + + diff --git a/smart-switch-service/src/main/java/com/ruoyi/ss/channelWithdraw/service/ChannelWithdrawService.java b/smart-switch-service/src/main/java/com/ruoyi/ss/channelWithdraw/service/ChannelWithdrawService.java new file mode 100644 index 00000000..259e1a3a --- /dev/null +++ b/smart-switch-service/src/main/java/com/ruoyi/ss/channelWithdraw/service/ChannelWithdrawService.java @@ -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 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); +} diff --git a/smart-switch-service/src/main/java/com/ruoyi/ss/channelWithdraw/service/impl/ChannelWithdrawServiceImpl.java b/smart-switch-service/src/main/java/com/ruoyi/ss/channelWithdraw/service/impl/ChannelWithdrawServiceImpl.java new file mode 100644 index 00000000..e6832696 --- /dev/null +++ b/smart-switch-service/src/main/java/com/ruoyi/ss/channelWithdraw/service/impl/ChannelWithdrawServiceImpl.java @@ -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 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); + } +} diff --git a/smart-switch-web/src/main/java/com/ruoyi/web/controller/ss/ChannelWithdrawController.java b/smart-switch-web/src/main/java/com/ruoyi/web/controller/ss/ChannelWithdrawController.java new file mode 100644 index 00000000..310903a3 --- /dev/null +++ b/smart-switch-web/src/main/java/com/ruoyi/web/controller/ss/ChannelWithdrawController.java @@ -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 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 list = channelWithdrawService.selectChannelWithdrawList(query); + ExcelUtil util = new ExcelUtil(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)); + } +} diff --git a/smart-switch-web/src/main/resources/application-prod.yml b/smart-switch-web/src/main/resources/application-prod.yml index 5423cd77..425c0c52 100644 --- a/smart-switch-web/src/main/resources/application-prod.yml +++ b/smart-switch-web/src/main/resources/application-prod.yml @@ -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==