ERPShipment.java 1.77 KB
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;
    }
}