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 {
|
|
}
|