96 lines
3.2 KiB
Java
96 lines
3.2 KiB
Java
package com.ruoyi.cai.controller;
|
|
|
|
import cn.dev33.satoken.annotation.SaCheckPermission;
|
|
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
import com.ruoyi.cai.domain.CaiWithdrawExchange;
|
|
import com.ruoyi.cai.service.CaiWithdrawExchangeService;
|
|
import com.ruoyi.common.annotation.Log;
|
|
import com.ruoyi.common.annotation.RepeatSubmit;
|
|
import com.ruoyi.common.core.controller.BaseController;
|
|
import com.ruoyi.common.core.domain.PageQuery;
|
|
import com.ruoyi.common.core.domain.R;
|
|
import com.ruoyi.common.core.page.TableDataInfo;
|
|
import com.ruoyi.common.core.validate.AddGroup;
|
|
import com.ruoyi.common.core.validate.EditGroup;
|
|
import com.ruoyi.common.enums.BusinessType;
|
|
import lombok.RequiredArgsConstructor;
|
|
import org.springframework.validation.annotation.Validated;
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
import javax.validation.constraints.NotEmpty;
|
|
import javax.validation.constraints.NotNull;
|
|
import java.util.Arrays;
|
|
|
|
/**
|
|
* 提现 - 兑换配置
|
|
*
|
|
* @author 77
|
|
* @date 2023-12-24
|
|
*/
|
|
@Validated
|
|
@RequiredArgsConstructor
|
|
@RestController
|
|
@RequestMapping("/cai/withdrawExchange")
|
|
public class CaiWithdrawExchangeController extends BaseController {
|
|
|
|
private final CaiWithdrawExchangeService caiWithdrawExchangeService;
|
|
|
|
/**
|
|
* 查询提现 - 兑换配置列表
|
|
*/
|
|
@SaCheckPermission("cai:withdrawExchange:list")
|
|
@GetMapping("/list")
|
|
public TableDataInfo<CaiWithdrawExchange> list(CaiWithdrawExchange bo, PageQuery pageQuery) {
|
|
Page<CaiWithdrawExchange> page = caiWithdrawExchangeService.page(pageQuery.build(), Wrappers.lambdaQuery(bo));
|
|
return TableDataInfo.build(page);
|
|
}
|
|
|
|
/**
|
|
* 获取提现 - 兑换配置详细信息
|
|
*
|
|
* @param id 主键
|
|
*/
|
|
@SaCheckPermission("cai:withdrawExchange:query")
|
|
@GetMapping("/{id}")
|
|
public R<CaiWithdrawExchange> getInfo(@NotNull(message = "主键不能为空")
|
|
@PathVariable Long id) {
|
|
return R.ok(caiWithdrawExchangeService.getById(id));
|
|
}
|
|
|
|
/**
|
|
* 新增提现 - 兑换配置
|
|
*/
|
|
@SaCheckPermission("cai:withdrawExchange:add")
|
|
@Log(title = "提现 - 兑换配置", businessType = BusinessType.INSERT)
|
|
@RepeatSubmit()
|
|
@PostMapping()
|
|
public R<Void> add(@Validated(AddGroup.class) @RequestBody CaiWithdrawExchange bo) {
|
|
return toAjax(caiWithdrawExchangeService.save(bo));
|
|
}
|
|
|
|
/**
|
|
* 修改提现 - 兑换配置
|
|
*/
|
|
@SaCheckPermission("cai:withdrawExchange:edit")
|
|
@Log(title = "提现 - 兑换配置", businessType = BusinessType.UPDATE)
|
|
@RepeatSubmit()
|
|
@PutMapping()
|
|
public R<Void> edit(@Validated(EditGroup.class) @RequestBody CaiWithdrawExchange bo) {
|
|
return toAjax(caiWithdrawExchangeService.updateById(bo));
|
|
}
|
|
|
|
/**
|
|
* 删除提现 - 兑换配置
|
|
*
|
|
* @param ids 主键串
|
|
*/
|
|
@SaCheckPermission("cai:withdrawExchange:remove")
|
|
@Log(title = "提现 - 兑换配置", businessType = BusinessType.DELETE)
|
|
@DeleteMapping("/{ids}")
|
|
public R<Void> remove(@NotEmpty(message = "主键不能为空")
|
|
@PathVariable Long[] ids) {
|
|
return toAjax(caiWithdrawExchangeService.removeBatchByIds(Arrays.asList(ids), true));
|
|
}
|
|
}
|