71 lines
2.2 KiB
Java
71 lines
2.2 KiB
Java
package com.ruoyi.xq.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.common.annotation.Log;
|
|
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.enums.BusinessType;
|
|
import com.ruoyi.xq.domain.WxTransLog;
|
|
import com.ruoyi.xq.service.WxTransLogService;
|
|
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 2024-03-25
|
|
*/
|
|
@Validated
|
|
@RequiredArgsConstructor
|
|
@RestController
|
|
@RequestMapping("/xq/wxTransLog")
|
|
public class WxTransLogController extends BaseController {
|
|
|
|
private final WxTransLogService wxTransLogService;
|
|
|
|
/**
|
|
* 查询微信交换记录列表
|
|
*/
|
|
@SaCheckPermission("xq:wxTransLog:list")
|
|
@GetMapping("/list")
|
|
public TableDataInfo<WxTransLog> list(WxTransLog bo, PageQuery pageQuery) {
|
|
Page<WxTransLog> page = wxTransLogService.page(pageQuery.build(), Wrappers.lambdaQuery(bo));
|
|
return TableDataInfo.build(page);
|
|
}
|
|
|
|
/**
|
|
* 获取微信交换记录详细信息
|
|
*
|
|
* @param id 主键
|
|
*/
|
|
@SaCheckPermission("xq:wxTransLog:query")
|
|
@GetMapping("/{id}")
|
|
public R<WxTransLog> getInfo(@NotNull(message = "主键不能为空")
|
|
@PathVariable Long id) {
|
|
return R.ok(wxTransLogService.getById(id));
|
|
}
|
|
|
|
/**
|
|
* 删除微信交换记录
|
|
*
|
|
* @param ids 主键串
|
|
*/
|
|
@SaCheckPermission("xq:wxTransLog:remove")
|
|
@Log(title = "微信交换记录", businessType = BusinessType.DELETE)
|
|
@DeleteMapping("/{ids}")
|
|
public R<Void> remove(@NotEmpty(message = "主键不能为空")
|
|
@PathVariable Long[] ids) {
|
|
return toAjax(wxTransLogService.removeBatchByIds(Arrays.asList(ids)));
|
|
}
|
|
}
|