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; /** *

* 销售产品额外加工数量 前端控制器 *

* * @author deslrey * @since 2026-03-25 */ @RestController @RequestMapping("/salesLedgerProductProcessBind") public class SalesLedgerProductProcessBindController { @Autowired private ISalesLedgerProductProcessBindService salesLedgerProductProcessBindService; }