package com.ruoyi.web.controller.api;
|
|
|
import com.ruoyi.common.basic.PageInfo;
|
import com.ruoyi.common.core.domain.R;
|
import com.ruoyi.system.query.FeedbackQuery;
|
import com.ruoyi.system.query.SystemBulletinQuery;
|
import com.ruoyi.system.service.ISysUserService;
|
import com.ruoyi.system.service.TFeedbackService;
|
import com.ruoyi.system.vo.system.FeedbackListVO;
|
import com.ruoyi.system.vo.system.SystemBulletinListVO;
|
import io.swagger.annotations.Api;
|
import io.swagger.annotations.ApiOperation;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.web.bind.annotation.PostMapping;
|
import org.springframework.web.bind.annotation.RequestBody;
|
import org.springframework.web.bind.annotation.RequestMapping;
|
import org.springframework.web.bind.annotation.RestController;
|
|
/**
|
* <p>
|
* 意见反馈 前端控制器
|
* </p>
|
*
|
* @author xiaochen
|
* @since 2025-05-28
|
*/
|
@Api(tags = "意见反馈")
|
@RestController
|
@RequestMapping("/t-feedback")
|
public class TFeedbackController {
|
@Autowired
|
private TFeedbackService feedbackService;
|
|
@ApiOperation(value = "意见反馈分页列表")
|
@PostMapping(value = "/pageList")
|
public R<PageInfo<FeedbackListVO>> pageList(@RequestBody FeedbackQuery query) {
|
return R.ok(feedbackService.pageList(query));
|
}
|
}
|