懒羊羊
2023-11-25 9bd5461a1387becd4da03158061a1ed17ddf6a6c
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
package cn.stylefeng.guns.modular.om.productionOrdeInfo.service;
 
import cn.stylefeng.guns.base.pojo.page.LayuiPageInfo;
import cn.stylefeng.guns.modular.om.productionOrdeInfo.entity.ProductionOrdeInfo;
import cn.stylefeng.guns.modular.om.productionOrdeInfo.model.params.ProductionOrdeInfoParam;
import cn.stylefeng.guns.modular.om.productionOrdeInfo.model.result.ProductionOrdeInfoResult;
import com.baomidou.mybatisplus.extension.service.IService;
 
import java.util.HashMap;
import java.util.List;
import java.util.Map;
 
/**
 * <p>
 * 生产工单 服务类
 * </p>
 *
 * @author cl
 * @since 2022-10-25
 */
public interface ProductionOrdeInfoService extends IService<ProductionOrdeInfo> {
 
    /**
     * 新增
     *
     * @author cl
     * @Date 2022-10-25
     */
    void add(ProductionOrdeInfoParam param);
 
    /**
     * 删除
     *
     * @author cl
     * @Date 2022-10-25
     */
    void delete(ProductionOrdeInfoParam param);
 
    /**
     * 更新
     *
     * @author cl
     * @Date 2022-10-25
     */
    void update(ProductionOrdeInfoParam param);
 
    /**
     * 查询单条数据,Specification模式
     *
     * @author cl
     * @Date 2022-10-25
     */
    ProductionOrdeInfoResult findBySpec(ProductionOrdeInfoParam param);
 
    /**
     * 查询列表,Specification模式
     *
     * @author cl
     * @Date 2022-10-25
     */
    List<ProductionOrdeInfoResult> findListBySpec(ProductionOrdeInfoParam param);
 
    /**
     * 查询分页数据,Specification模式
     *
     * @author cl
     * @Date 2022-10-25
     */
     LayuiPageInfo findPageBySpec(ProductionOrdeInfoParam param);
 
    List lineFinishQty();
 
    void saveOrderBatchInfo(ProductionOrdeInfoParam productionOrdeInfoParam);
 
    HashMap getOrderWeek();
 
    Integer getPlanQtyByDate(String str);
 
    Integer getActualQtyByDate(String str);
 
    List<ProductionOrdeInfoResult> getListMonth();
 
    List<ProductionOrdeInfoResult> getColumnarDate();
 
    List<ProductionOrdeInfoResult> orderDescListFive();
}