yangys
2024-05-19 9e5da8899bc21bb5b6b0a3c267108caa00199291
1
2
3
4
5
6
7
8
9
10
11
12
package com.qianwen.smartman.modules.fms.controller;
 
import io.swagger.annotations.Api;
import com.qianwen.core.boot.ctrl.BladeController;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
 
@Api(value = "fms-instruction-record", tags = {"fms-instruction-record"})
@RequestMapping({"blade-fms/fms-instruction-record"})
@RestController
public class FmsInstructionRecordController extends BladeController {
}