zhuguifei
2026-03-10 2c1fd10c6fbabb8e9f0e9f07fe66fb36c008e883
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
package com.shlanbao.tzsc.pms.sch.stat.beans;
 
 
import com.shlanbao.tzsc.base.model.BaseEntity;
 
/**
 * 工单实绩消耗数据
 * @author Leejean
 * @create 2014年11月18日下午4:21:29
 */
public class InputBean extends BaseEntity {
    private String id;
    private String unitCode;//单位code
    private String unit;
    private String matCode;//辅料code
    private String mat;
    private Double orignalData;//原始数据
    private Double qty;        //消耗量
    private String bth;//物料批次
    private String outputId;
    private String matType;//物料类型
    
    private Double uval;  //消耗量上限值 
    private Double lval;  //消耗量下限值
    
    private Double dacQty; //DAC产量
    private String inputQty; // 辅料库投料数量
    
    public String getMatType() {
        return matType;
    }
 
    public void setMatType(String matType) {
        this.matType = matType;
    }
 
    public InputBean() {
        // TODO Auto-generated constructor stub
    }
    
    public InputBean(String id, Double orignalData, Double qty) {
        super();
        this.id = id;
        this.orignalData = orignalData;
        this.qty = qty;
    }
 
    public String getUnitCode() {
        return unitCode;
    }
 
    public void setUnitCode(String unitCode) {
        this.unitCode = unitCode;
    }
 
    public String getMatCode() {
        return matCode;
    }
 
    public void setMatCode(String matCode) {
        this.matCode = matCode;
    }
 
    public String getBth() {
        return bth;
    }
 
    public void setBth(String bth) {
        this.bth = bth;
    }
 
    public String getId() {
        return id;
    }
    public void setId(String id) {
        this.id = id;
    }
    public String getUnit() {
        return unit;
    }
    public void setUnit(String unit) {
        this.unit = unit;
    }
    public String getMat() {
        return mat;
    }
    public void setMat(String mat) {
        this.mat = mat;
    }
    public Double getOrignalData() {
        return orignalData;
    }
    public void setOrignalData(Double orignalData) {
        this.orignalData = orignalData;
    }
    public Double getQty() {
        return qty;
    }
    public void setQty(Double qty) {
        this.qty = qty;
    }
    public String getOutputId() {
        return outputId;
    }
    public void setOutputId(String outputId) {
        this.outputId = outputId;
    }
 
    public Double getUval() {
        return uval;
    }
 
    public void setUval(Double uval) {
        this.uval = uval;
    }
 
    public Double getLval() {
        return lval;
    }
 
    public void setLval(Double lval) {
        this.lval = lval;
    }
 
    public Double getDacQty() {
        return dacQty;
    }
 
    public void setDacQty(Double dacQty) {
        this.dacQty = dacQty;
    }
 
    public String getInputQty() {
        return inputQty;
    }
 
    public void setInputQty(String inputQty) {
        this.inputQty = inputQty;
    }
}