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
package com.shlanbao.tzsc.pms.sch.shiftexchg.beans;
/**
 * 换班换牌明细
 * @author Leejean
 * @create 2014年12月8日下午2:47:17
 */
public class ShiftExchgDetBean {
    private String id;
    private String exchg;//FK
    private String mat;//结存物料
    private Double qty;//数量
    private String unit;//单位
    private Long del;
    
    public String getId() {
        return id;
    }
    public void setId(String id) {
        this.id = id;
    }
    public String getExchg() {
        return exchg;
    }
    public void setExchg(String exchg) {
        this.exchg = exchg;
    }
    public String getMat() {
        return mat;
    }
    public void setMat(String mat) {
        this.mat = mat;
    }
    public Double getQty() {
        return qty;
    }
    public void setQty(Double qty) {
        this.qty = qty;
    }
    public String getUnit() {
        return unit;
    }
    public void setUnit(String unit) {
        this.unit = unit;
    }
    public Long getDel() {
        return del;
    }
    public void setDel(Long del) {
        this.del = del;
    }
    
}