yangys
2024-05-08 dc40d10f7d8227d8b8216584ed19e4d41c57f0cd
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 {
}