DailyCheck.java 2.3 KB
package com.xiniunet.lecunstomization.domain;

import com.xiniunet.framework.base.BaseDomain;

/**
 * Created by Administrator on 2016/10/9.
 */
public class DailyCheck extends BaseDomain {
    /**
     * erp发货数量
     */
    private Long erpShipmentNumber;

    /**
     * 出货单和拣货单
     */
    private Long outBoundAndPick;

    /**
     * taobao与erp 物料映射
     */
    private Long taobaoAndErp;

    /**
     * ERP和WMS
     */
    private Long erpAndWms;

    /**
     * 保留和订单
     */
    private Long allocationAndOrder;

    /**
     * 交易和库存
     */
    private Long transationAndBalance;

    /**
     * 未处理出库单
     */
    private Long yesterdayUnShiped;

    /**
     * 未处理入库单
     */
    private Long unShipedInbound;

    public Long getErpShipmentNumber() {
        return erpShipmentNumber;
    }

    public void setErpShipmentNumber(Long erpShipmentNumber) {
        this.erpShipmentNumber = erpShipmentNumber;
    }

    public Long getOutBoundAndPick() {
        return outBoundAndPick;
    }

    public void setOutBoundAndPick(Long outBoundAndPick) {
        this.outBoundAndPick = outBoundAndPick;
    }

    public Long getTaobaoAndErp() {
        return taobaoAndErp;
    }

    public void setTaobaoAndErp(Long taobaoAndErp) {
        this.taobaoAndErp = taobaoAndErp;
    }

    public Long getErpAndWms() {
        return erpAndWms;
    }

    public void setErpAndWms(Long erpAndWms) {
        this.erpAndWms = erpAndWms;
    }

    public Long getAllocationAndOrder() {
        return allocationAndOrder;
    }

    public void setAllocationAndOrder(Long allocationAndOrder) {
        this.allocationAndOrder = allocationAndOrder;
    }

    public Long getTransationAndBalance() {
        return transationAndBalance;
    }

    public void setTransationAndBalance(Long transationAndBalance) {
        this.transationAndBalance = transationAndBalance;
    }

    public Long getYesterdayUnShiped() {
        return yesterdayUnShiped;
    }

    public void setYesterdayUnShiped(Long yesterdayUnShiped) {
        this.yesterdayUnShiped = yesterdayUnShiped;
    }

    public Long getUnShipedInbound() {
        return unShipedInbound;
    }

    public void setUnShipedInbound(Long unShipedInbound) {
        this.unShipedInbound = unShipedInbound;
    }
}