InstructionsController.java 338 B

123456789101112131415161718
  1. package com.zy.bms.controller;
  2. import org.springframework.web.bind.annotation.RequestMapping;
  3. import org.springframework.web.bind.annotation.RestController;
  4. /**
  5. * 指令表 前端控制器
  6. *
  7. * @author chenyi
  8. * @since 2021-06-22
  9. */
  10. @RestController
  11. @RequestMapping("/builder/instructions")
  12. public class InstructionsController {
  13. }