96 lines
3.1 KiB
Java
96 lines
3.1 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.PointChangeLog;
|
|
import com.ruoyi.cai.service.PointChangeLogService;
|
|
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 ruoyi
|
|
* @date 2025-12-10
|
|
*/
|
|
@Validated
|
|
@RequiredArgsConstructor
|
|
@RestController
|
|
@RequestMapping("/cai/pointChangeLog")
|
|
public class PointChangeLogController extends BaseController {
|
|
|
|
private final PointChangeLogService pointChangeLogService;
|
|
|
|
/**
|
|
* 查询积分记录列表
|
|
*/
|
|
@SaCheckPermission("cai:pointChangeLog:list")
|
|
@GetMapping("/list")
|
|
public TableDataInfo<PointChangeLog> list(PointChangeLog bo, PageQuery pageQuery) {
|
|
Page<PointChangeLog> page = pointChangeLogService.page(pageQuery.build(), Wrappers.lambdaQuery(bo).orderByDesc(PointChangeLog::getCreateTime));
|
|
return TableDataInfo.build(page);
|
|
}
|
|
|
|
/**
|
|
* 获取积分记录详细信息
|
|
*
|
|
* @param id 主键
|
|
*/
|
|
@SaCheckPermission("cai:pointChangeLog:query")
|
|
@GetMapping("/{id}")
|
|
public R<PointChangeLog> getInfo(@NotNull(message = "主键不能为空")
|
|
@PathVariable String id) {
|
|
return R.ok(pointChangeLogService.getById(id));
|
|
}
|
|
|
|
/**
|
|
* 新增积分记录
|
|
*/
|
|
@SaCheckPermission("cai:pointChangeLog:add")
|
|
@Log(title = "积分记录", businessType = BusinessType.INSERT)
|
|
@RepeatSubmit()
|
|
@PostMapping()
|
|
public R<Void> add(@Validated(AddGroup.class) @RequestBody PointChangeLog bo) {
|
|
return toAjax(pointChangeLogService.save(bo));
|
|
}
|
|
|
|
/**
|
|
* 修改积分记录
|
|
*/
|
|
@SaCheckPermission("cai:pointChangeLog:edit")
|
|
@Log(title = "积分记录", businessType = BusinessType.UPDATE)
|
|
@RepeatSubmit()
|
|
@PutMapping()
|
|
public R<Void> edit(@Validated(EditGroup.class) @RequestBody PointChangeLog bo) {
|
|
return toAjax(pointChangeLogService.updateById(bo));
|
|
}
|
|
|
|
/**
|
|
* 删除积分记录
|
|
*
|
|
* @param ids 主键串
|
|
*/
|
|
@SaCheckPermission("cai:pointChangeLog:remove")
|
|
@Log(title = "积分记录", businessType = BusinessType.DELETE)
|
|
@DeleteMapping("/{ids}")
|
|
public R<Void> remove(@NotEmpty(message = "主键不能为空")
|
|
@PathVariable String[] ids) {
|
|
return toAjax(pointChangeLogService.removeBatchByIds(Arrays.asList(ids), true));
|
|
}
|
|
}
|