Files
my-bigScreen/src/main/java/com/mini/mybigscreen/biz/controller/CompanyController.java

19 lines
389 B
Java
Raw Normal View History

2026-03-03 23:05:02 +08:00
package com.mini.mybigscreen.biz.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* <p>
* 公司信息表用于存储公司基本信息 前端控制器
* </p>
*
* @author gaoxq
* @since 2026-03-03
*/
@RestController
@RequestMapping("/biz/company")
public class CompanyController {
}