package com.yuanchu.mom.controller;
|
|
import io.swagger.annotations.Api;
|
import lombok.AllArgsConstructor;
|
import org.springframework.web.bind.annotation.RequestMapping;
|
import org.springframework.web.bind.annotation.RestController;
|
|
/**
|
* <p>
|
* 光纤配置的光纤表 前端控制器
|
* </p>
|
*
|
* @author 江苏鵷雏网络科技有限公司
|
* @since 2024-05-30 05:59:01
|
*/
|
@Api(tags = "检验下单-光纤配置-光纤表")
|
@AllArgsConstructor
|
@RestController
|
@RequestMapping("/insFiber")
|
public class InsFiberController {
|
|
}
|