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
package com.shlanbao.tzsc.pms.sch.workorder.beans;
/**
 *  mes工单实际反馈,辅料参数
 * 
 * */
public class MesMdMatBean {
   private String materialCode; //对应code字段
   private String consumeTime; //物料消耗时间(开始投料时间)
   private Float quantity;//数量
   private String uom;  //单位  -传中文
   
       
    public String getMaterialCode() {
        return materialCode;
    }
    public void setMaterialCode(String materialCode) {
        this.materialCode = materialCode;
    }
    public String getConsumeTime() {
        return consumeTime;
    }
    public void setConsumeTime(String consumeTime) {
        this.consumeTime = consumeTime;
    }
    public Float getQuantity() {
        return quantity;
    }
    public void setQuantity(Float quantity) {
        this.quantity = quantity;
    }
    public String getUom() {
        return uom;
    }
    public void setUom(String uom) {
        this.uom = uom;
    }
  
  
}