TaskBean.java 5.21 KB
package com.lijinji.scan.bean;

import android.location.Location;

import java.math.BigDecimal;
import java.util.List;

public class TaskBean {

    private int planId;
    private int planType;
    private String barcode;
    private String fromLine;
    private String toLine;
    private String qty;
    private int status;
    private int commit;
    private String feedbackId;
    private String message;
    private int finishedType;
    private String lineNumber;
    private String batch;
    private String productDate;
    private String location;
    private String state;
    private String part;
    private int id;
    private String created;
    private String createdBy;
    private String updated;
    private String updatedBy;
    private ProductBean order;

    public int getPlanId() {
        return planId;
    }

    public void setPlanId(int planId) {
        this.planId = planId;
    }

    public int getPlanType() {
        return planType;
    }

    public void setPlanType(int planType) {
        this.planType = planType;
    }

    public String getBarcode() {
        return barcode;
    }

    public void setBarcode(String barcode) {
        this.barcode = barcode;
    }

    public String getFromLine() {
        return fromLine;
    }

    public void setFromLine(String fromLine) {
        this.fromLine = fromLine;
    }

    public String getToLine() {
        return toLine;
    }

    public void setToLine(String toLine) {
        this.toLine = toLine;
    }

    public String getQty() {
        return qty;
    }

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

    public int getStatus() {
        return status;
    }

    public void setStatus(int status) {
        this.status = status;
    }

    public int getCommit() {
        return commit;
    }

    public void setCommit(int commit) {
        this.commit = commit;
    }

    public String getFeedbackId() {
        return feedbackId;
    }

    public void setFeedbackId(String feedbackId) {
        this.feedbackId = feedbackId;
    }

    public String getMessage() {
        return message;
    }

    public void setMessage(String message) {
        this.message = message;
    }

    public int getFinishedType() {
        return finishedType;
    }

    public void setFinishedType(int finishedType) {
        this.finishedType = finishedType;
    }

    public String getLineNumber() {
        return lineNumber;
    }

    public void setLineNumber(String lineNumber) {
        this.lineNumber = lineNumber;
    }

    public String getBatch() {
        return batch;
    }

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

    public String getProductDate() {
        return productDate;
    }

    public void setProductDate(String productDate) {
        this.productDate = productDate;
    }

    public String getLocation() {
        return location;
    }

    public void setLocation(String location) {
        this.location = location;
    }

    public String getState() {
        return state;
    }

    public void setState(String state) {
        this.state = state;
    }

    public String getPart() {
        return part;
    }

    public void setPart(String part) {
        this.part = part;
    }

    public ProductBean getOrder() {
        return order;
    }

    public void setOrder(ProductBean order) {
        this.order = order;
    }

    public int getId() {
        return id;
    }

    public void setId(int id) {
        this.id = id;
    }

    public String getCreated() {
        return created;
    }

    public void setCreated(String created) {
        this.created = created;
    }

    public String getCreatedBy() {
        return createdBy;
    }

    public void setCreatedBy(String createdBy) {
        this.createdBy = createdBy;
    }

    public String getUpdated() {
        return updated;
    }

    public void setUpdated(String updated) {
        this.updated = updated;
    }

    public String getUpdatedBy() {
        return updatedBy;
    }

    public void setUpdatedBy(String updatedBy) {
        this.updatedBy = updatedBy;
    }

    @Override
    public String toString() {
        return "TaskBean{" +
                "planId=" + planId +
                ", planType=" + planType +
                ", barcode='" + barcode + '\'' +
                ", fromLine='" + fromLine + '\'' +
                ", toLine='" + toLine + '\'' +
                ", qty='" + qty + '\'' +
                ", status=" + status +
                ", commit=" + commit +
                ", feedbackId='" + feedbackId + '\'' +
                ", message='" + message + '\'' +
                ", finishedType=" + finishedType +
                ", lineNumber='" + lineNumber + '\'' +
                ", batch='" + batch + '\'' +
                ", productDate='" + productDate + '\'' +
                ", location='" + location + '\'' +
                ", state='" + state + '\'' +
                ", part='" + part + '\'' +
                ", order='" + order + '\'' +
                ", id=" + id +
                ", created='" + created + '\'' +
                ", createdBy='" + createdBy + '\'' +
                ", updated='" + updated + '\'' +
                ", updatedBy='" + updatedBy + '\'' +
                '}';
    }
}