OutFactoryHistory.java

package com.mycim.valueobject.wip;

import java.io.Serializable;
import java.sql.Timestamp;

/**
 * @author Aiden
 * @date:2017年7月20日 上午10:33:46
 * @description
 */
public class OutFactoryHistory implements Serializable, Cloneable {

    private Long rrn;            // 主键

    private Long outFactoryRrn;  // 外包厂rrn

    private Long lotRrn;         // 批次rrn

    private Timestamp fsendTime;      // 委外时间

    private String fsendUser;      // 委外操作员

    private Timestamp recivePlanTime; // 预计返厂时间

    private Timestamp reciveTime;     // 返厂时间

    private String reciveUser;     // 返厂操作员

    private Long bankRrn;        // 仓库rrn

    private String fsendComments;  // 委外备注

    private String reciveComments; // 返厂备注

    private Long fsendTransRrn;  // 委外事务rrn

    private Long reciveTransRrn; // 返厂操作的事务rrn

    private String lotStatus;      // 批次状态

    private String routeSeq;       // 委外时 路径seq

    private String operationSeq;   // 委外时 步骤seq

    private String routeId;        // 委外时 路径号

    private String operationId;    // 委外时 步骤号

    public Long getRrn() {
        return rrn;
    }

    public void setRrn(Long rrn) {
        this.rrn = rrn;
    }

    public Long getOutFactoryRrn() {
        return outFactoryRrn;
    }

    public void setOutFactoryRrn(Long outFactoryRrn) {
        this.outFactoryRrn = outFactoryRrn;
    }

    public Long getLotRrn() {
        return lotRrn;
    }

    public void setLotRrn(Long lotRrn) {
        this.lotRrn = lotRrn;
    }

    public Timestamp getFsendTime() {
        return fsendTime;
    }

    public void setFsendTime(Timestamp fsendTime) {
        this.fsendTime = fsendTime;
    }

    public String getFsendUser() {
        return fsendUser;
    }

    public void setFsendUser(String fsendUser) {
        this.fsendUser = fsendUser;
    }

    public Timestamp getRecivePlanTime() {
        return recivePlanTime;
    }

    public void setRecivePlanTime(Timestamp recivePlanTime) {
        this.recivePlanTime = recivePlanTime;
    }

    public Timestamp getReciveTime() {
        return reciveTime;
    }

    public void setReciveTime(Timestamp reciveTime) {
        this.reciveTime = reciveTime;
    }

    public String getReciveUser() {
        return reciveUser;
    }

    public void setReciveUser(String reciveUser) {
        this.reciveUser = reciveUser;
    }

    public Long getFsendTransRrn() {
        return fsendTransRrn;
    }

    public void setFsendTransRrn(Long fsendTransRrn) {
        this.fsendTransRrn = fsendTransRrn;
    }

    public Long getReciveTransRrn() {
        return reciveTransRrn;
    }

    public void setReciveTransRrn(Long reciveTransRrn) {
        this.reciveTransRrn = reciveTransRrn;
    }

    public String getLotStatus() {
        return lotStatus;
    }

    public void setLotStatus(String lotStatus) {
        this.lotStatus = lotStatus;
    }

    public Long getBankRrn() {
        return bankRrn;
    }

    public void setBankRrn(Long bankRrn) {
        this.bankRrn = bankRrn;
    }

    public String getFsendComments() {
        return fsendComments;
    }

    public void setFsendComments(String fsendComments) {
        this.fsendComments = fsendComments;
    }

    public String getReciveComments() {
        return reciveComments;
    }

    public void setReciveComments(String reciveComments) {
        this.reciveComments = reciveComments;
    }

    public String getRouteSeq() {
        return routeSeq;
    }

    public void setRouteSeq(String routeSeq) {
        this.routeSeq = routeSeq;
    }

    public String getOperationSeq() {
        return operationSeq;
    }

    public void setOperationSeq(String operationSeq) {
        this.operationSeq = operationSeq;
    }

    public String getRouteId() {
        return routeId;
    }

    public void setRouteId(String routeId) {
        this.routeId = routeId;
    }

    public String getOperationId() {
        return operationId;
    }

    public void setOperationId(String operationId) {
        this.operationId = operationId;
    }

}