123456789101112131415161718 |
- package com.zy.bms.controller;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.web.bind.annotation.RestController;
- /**
- * 指令表 前端控制器
- *
- * @author chenyi
- * @since 2021-06-22
- */
- @RestController
- @RequestMapping("/builder/instructions")
- public class InstructionsController {
- }
|