gongchunyi
7 天以前 854d063b5bfcadffe819456e0d4790a0579fa079
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package com.ruoyi.sales.controller;
 
 
import com.ruoyi.sales.service.ISalesLedgerProductProcessBindService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
 
import org.springframework.web.bind.annotation.RestController;
 
/**
 * <p>
 * 销售产品额外加工数量 前端控制器
 * </p>
 *
 * @author deslrey
 * @since 2026-03-25
 */
@RestController
@RequestMapping("/salesLedgerProductProcessBind")
public class SalesLedgerProductProcessBindController {
 
    @Autowired
    private ISalesLedgerProductProcessBindService salesLedgerProductProcessBindService;
 
 
}