skyouc
2025-04-09 faa2a5d8d3cba12ff98c261713bff4d9cea99b79
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.vincent.rsf.server.api.controller;
 
import com.vincent.rsf.server.system.controller.BaseController;
import io.swagger.annotations.Api;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
 
/**
 * @author Ryan
 * @version 1.0
 * @title ReportMsgController
 * @description
 * @create 2025/3/12 17:00
 */
@RestController
@RequestMapping("/report")
@Api(tags = "上报信息接口管理器")
public class ReportMsgController extends BaseController {
 
}