96 lines
3.1 KiB
Java
96 lines
3.1 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.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 com.ruoyi.xq.domain.SysPushLog;
|
|
import com.ruoyi.xq.service.SysPushLogService;
|
|
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-20
|
|
*/
|
|
@Validated
|
|
@RequiredArgsConstructor
|
|
@RestController
|
|
@RequestMapping("/xq/sysPushLog")
|
|
public class SysPushLogController extends BaseController {
|
|
|
|
private final SysPushLogService sysPushLogService;
|
|
|
|
/**
|
|
* 查询推送系统消息记录列表
|
|
*/
|
|
@SaCheckPermission("xq:sysPushLog:list")
|
|
@GetMapping("/list")
|
|
public TableDataInfo<SysPushLog> list(SysPushLog bo, PageQuery pageQuery) {
|
|
Page<SysPushLog> page = sysPushLogService.page(pageQuery.build(), Wrappers.lambdaQuery(bo));
|
|
return TableDataInfo.build(page);
|
|
}
|
|
|
|
/**
|
|
* 获取推送系统消息记录详细信息
|
|
*
|
|
* @param id 主键
|
|
*/
|
|
@SaCheckPermission("xq:sysPushLog:query")
|
|
@GetMapping("/{id}")
|
|
public R<SysPushLog> getInfo(@NotNull(message = "主键不能为空")
|
|
@PathVariable Long id) {
|
|
return R.ok(sysPushLogService.getById(id));
|
|
}
|
|
|
|
/**
|
|
* 新增推送系统消息记录
|
|
*/
|
|
@SaCheckPermission("xq:sysPushLog:add")
|
|
@Log(title = "推送系统消息记录", businessType = BusinessType.INSERT)
|
|
@RepeatSubmit()
|
|
@PostMapping()
|
|
public R<Void> add(@Validated(AddGroup.class) @RequestBody SysPushLog bo) {
|
|
return toAjax(sysPushLogService.save(bo));
|
|
}
|
|
|
|
/**
|
|
* 修改推送系统消息记录
|
|
*/
|
|
@SaCheckPermission("xq:sysPushLog:edit")
|
|
@Log(title = "推送系统消息记录", businessType = BusinessType.UPDATE)
|
|
@RepeatSubmit()
|
|
@PutMapping()
|
|
public R<Void> edit(@Validated(EditGroup.class) @RequestBody SysPushLog bo) {
|
|
return toAjax(sysPushLogService.updateById(bo));
|
|
}
|
|
|
|
/**
|
|
* 删除推送系统消息记录
|
|
*
|
|
* @param ids 主键串
|
|
*/
|
|
@SaCheckPermission("xq:sysPushLog:remove")
|
|
@Log(title = "推送系统消息记录", businessType = BusinessType.DELETE)
|
|
@DeleteMapping("/{ids}")
|
|
public R<Void> remove(@NotEmpty(message = "主键不能为空")
|
|
@PathVariable Long[] ids) {
|
|
return toAjax(sysPushLogService.removeBatchByIds(Arrays.asList(ids)));
|
|
}
|
|
}
|