gongchunyi
4 天以前 ff5614116fe3f9a8d515ba7feb3c2e408d6af16a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.ruoyi.sales.controller;
 
 
import io.swagger.annotations.ApiModel;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
 
/**
 * <p>
 * 销售订单绑定的工艺路线 前端控制器
 * </p>
 *
 * @author deslrey
 * @since 2026-03-26
 */
@RestController
@RequestMapping("/salesLedgerProcessRoute")
@ApiModel(value = "SalesLedgerProcessRouteController", description = "销售订单绑定的工艺路线")
public class SalesLedgerProcessRouteController {
 
}