1234567891011121314151617181920 |
- package com.jsh.erp.controller;
- import io.swagger.annotations.Api;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.web.bind.annotation.RestController;
- /**
- * @Description 外部接口
- * @Author MS.BLUE
- * @Date 2025-04-12
- */
- @RestController
- @RequestMapping(value = "/open-api")
- @Api(tags = {"外部接口"})
- public class OpenController {
- }
|