zhuguifei
2026-03-10 58402bd5e762361363a0f7d7907153c77dbb819f
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
package com.shlanbao.tzsc.pms.isp.beans;
/**
 * 工单info
 * @author Leejean
 * @create 2015年1月15日上午8:44:11
 */
public class WorkorderInfoBean {
    private String code;//设备号
    private String teamName;//班组
    private String matName;//牌号
    private Double qty;    //计划产量
    private String shiftName;//班次名称
    private Long type;//工单类型
 
    public Long getType() {
        return type;
    }
 
    public void setType(Long type) {
        this.type = type;
    }
 
    public String getShiftName() {
        return shiftName;
    }
    public void setShiftName(String shiftName) {
        this.shiftName = shiftName;
    }
    public String getCode() {
        return code;
    }
    public void setCode(String code) {
        this.code = code;
    }
    public String getTeamName() {
        return teamName;
    }
    public void setTeamName(String teamName) {
        this.teamName = teamName;
    }
    public String getMatName() {
        return matName;
    }
    public void setMatName(String matName) {
        this.matName = matName;
    }
    public Double getQty() {
        return qty;
    }
    public void setQty(Double qty) {
        this.qty = qty;
    }
    
}