1234567891011121314151617181920 |
- package com.om.controller.admin;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.web.bind.annotation.RestController;
- /**
- * <p>
- * 前端控制器
- * </p>
- *
- * @author bmmx
- * @since 2024-03-12
- */
- @RestController
- @RequestMapping("/pcb-version-info")
- public class PcbVersionInfoController {
- }
|