TaskBill.java 1.35 KB
package com.huaheng.api.tv.domain;

import java.math.BigDecimal;

public class TaskBill {
    /**
     * 任务类型
     */
    private String taskType;
    /**
     * 出库口
     */
    private String port;

    /**
     * 容器号
     */
    private String containerCode;

    /**
     * 从货位,源库位
     */
    private String fromLocation;
    /*
    数量
     */
    private BigDecimal qty;

    /**
     * 批次
     */
    private String batch;

    public String getTaskType() {
        return taskType;
    }

    public void setTaskType(String taskType) {
        this.taskType = taskType;
    }

    public String getPort() {
        return port;
    }

    public void setPort(String port) {
        this.port = port;
    }

    public String getContainerCode() {
        return containerCode;
    }

    public void setContainerCode(String containerCode) {
        this.containerCode = containerCode;
    }

    public String getFromLocation() {
        return fromLocation;
    }

    public void setFromLocation(String fromLocation) {
        this.fromLocation = fromLocation;
    }

    public BigDecimal getQty() {
        return qty;
    }

    public void setQty(BigDecimal qty) {
        this.qty = qty;
    }

    public String getBatch() {
        return batch;
    }

    public void setBatch(String batch) {
        this.batch = batch;
    }
}