zss
12 小时以前 deff787716b00b4f491de429ba092915d7fa1a9e
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
27
package com.ruoyi.production.service;
 
import com.ruoyi.production.dto.ProductionRecordDto;
import com.ruoyi.production.vo.ProductionRecordVo;
 
/**
 * <br>
 * 生产报工记录Service
 * </br>
 *
 * @author deslrey
 * @version 1.0
 * @since 2026/03/23 10:22
 */
public interface ProductionRecordService {
 
    ProductionRecordVo productRouteItem(Long productOrderId);
 
    void addProductionRecordService(ProductionRecordDto dto);
 
    void deleteProductMain(Long productMainId);
 
    ProductionRecordDto detailProductMain(Long productMainId);
 
    void editProductMain(ProductionRecordDto dto);
 
}