init
This commit is contained in:
@@ -0,0 +1,72 @@
|
||||
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.UserChatFilter;
|
||||
import com.ruoyi.xq.service.UserChatFilterService;
|
||||
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-26
|
||||
*/
|
||||
@Validated
|
||||
@RequiredArgsConstructor
|
||||
@RestController
|
||||
@RequestMapping("/xq/userChatFilter")
|
||||
public class UserChatFilterController extends BaseController {
|
||||
|
||||
private final UserChatFilterService userChatFilterService;
|
||||
|
||||
/**
|
||||
* 查询聊天记录过滤列表
|
||||
*/
|
||||
@SaCheckPermission("xq:userChatFilter:list")
|
||||
@GetMapping("/list")
|
||||
public TableDataInfo<UserChatFilter> list(UserChatFilter bo, PageQuery pageQuery) {
|
||||
Page<UserChatFilter> page = userChatFilterService.page(pageQuery.build(), Wrappers.lambdaQuery(bo));
|
||||
return TableDataInfo.build(page);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 获取聊天记录过滤详细信息
|
||||
*
|
||||
* @param id 主键
|
||||
*/
|
||||
@SaCheckPermission("xq:userChatFilter:query")
|
||||
@GetMapping("/{id}")
|
||||
public R<UserChatFilter> getInfo(@NotNull(message = "主键不能为空")
|
||||
@PathVariable Long id) {
|
||||
return R.ok(userChatFilterService.getById(id));
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 删除聊天记录过滤
|
||||
*
|
||||
* @param ids 主键串
|
||||
*/
|
||||
@SaCheckPermission("xq:userChatFilter:remove")
|
||||
@Log(title = "聊天记录过滤", businessType = BusinessType.DELETE)
|
||||
@DeleteMapping("/{ids}")
|
||||
public R<Void> remove(@NotEmpty(message = "主键不能为空")
|
||||
@PathVariable Long[] ids) {
|
||||
return toAjax(userChatFilterService.removeBatchByIds(Arrays.asList(ids)));
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,70 @@
|
||||
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.UserChatRecord;
|
||||
import com.ruoyi.xq.service.UserChatRecordService;
|
||||
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-26
|
||||
*/
|
||||
@Validated
|
||||
@RequiredArgsConstructor
|
||||
@RestController
|
||||
@RequestMapping("/xq/userChatRecord")
|
||||
public class UserChatRecordController extends BaseController {
|
||||
|
||||
private final UserChatRecordService userChatRecordService;
|
||||
|
||||
/**
|
||||
* 查询聊天记录列表
|
||||
*/
|
||||
@SaCheckPermission("xq:userChatRecord:list")
|
||||
@GetMapping("/list")
|
||||
public TableDataInfo<UserChatRecord> list(UserChatRecord bo, PageQuery pageQuery) {
|
||||
Page<UserChatRecord> page = userChatRecordService.page(pageQuery.build(), Wrappers.lambdaQuery(bo));
|
||||
return TableDataInfo.build(page);
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取聊天记录详细信息
|
||||
*
|
||||
* @param id 主键
|
||||
*/
|
||||
@SaCheckPermission("xq:userChatRecord:query")
|
||||
@GetMapping("/{id}")
|
||||
public R<UserChatRecord> getInfo(@NotNull(message = "主键不能为空")
|
||||
@PathVariable Long id) {
|
||||
return R.ok(userChatRecordService.getById(id));
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除聊天记录
|
||||
*
|
||||
* @param ids 主键串
|
||||
*/
|
||||
@SaCheckPermission("xq:userChatRecord:remove")
|
||||
@Log(title = "聊天记录", businessType = BusinessType.DELETE)
|
||||
@DeleteMapping("/{ids}")
|
||||
public R<Void> remove(@NotEmpty(message = "主键不能为空")
|
||||
@PathVariable Long[] ids) {
|
||||
return toAjax(userChatRecordService.removeBatchByIds(Arrays.asList(ids)));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user