ERPShipment.java
1.77 KB
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
package com.huaheng.api.erp.domain;
import java.math.BigDecimal;
import java.util.Date;
import java.util.List;
public class ERPShipment {
    private String shipmentCode;   //生产计划
    private String shipmentType;   //单据类型
    private String order;//订单信息
    private List<MaterialInfo> materialList;
    private Date scheduleDate;//计划日期
    private String remake;//备注
    private String carType;//车型
    private BigDecimal totalQty;//总数量
    public BigDecimal getTotalQty() {
        return totalQty;
    }
    public void setTotalQty(BigDecimal totalQty) {
        this.totalQty = totalQty;
    }
    public String getCarType() {
        return carType;
    }
    public void setCarType(String carType) {
        this.carType = carType;
    }
    public String getShipmentCode() {
        return shipmentCode;
    }
    public void setShipmentCode(String shipmentCode) {
        this.shipmentCode = shipmentCode;
    }
    public String getShipmentType() {
        return shipmentType;
    }
    public void setShipmentType(String shipmentType) {
        this.shipmentType = shipmentType;
    }
    public String getOrder() {
        return order;
    }
    public void setOrder(String order) {
        this.order = order;
    }
    public List<MaterialInfo> getMaterialList() {
        return materialList;
    }
    public void setMaterialList(List<MaterialInfo> materialList) {
        this.materialList = materialList;
    }
    public Date getScheduleDate() {
        return scheduleDate;
    }
    public void setScheduleDate(Date scheduleDate) {
        this.scheduleDate = scheduleDate;
    }
    public String getRemake() {
        return remake;
    }
    public void setRemake(String remake) {
        this.remake = remake;
    }
}