EquipmentConstrainPairHistory.java

package com.mycim.valueobject.ems;

import java.io.Serializable;
import java.util.Date;

/**
 * @author Aiden
 * @date 2018年3月19日上午10:18:21
 * @description 机限设置历史
 */
public class EquipmentConstrainPairHistory implements Serializable {

    private static final long serialVersionUID = 1L;

    private Long transRrn;

    private Long constrainRrn;

    private Long facilityRrn;

    private String productId;

    private String processId;

    private String lotId;

    private String remark;

    private String createBy;

    private Date createTime;

    public Long getTransRrn() {
        return transRrn;
    }

    public void setTransRrn(Long transRrn) {
        this.transRrn = transRrn;
    }

    public Long getConstrainRrn() {
        return constrainRrn;
    }

    public void setConstrainRrn(Long constrainRrn) {
        this.constrainRrn = constrainRrn;
    }

    public Long getFacilityRrn() {
        return facilityRrn;
    }

    public void setFacilityRrn(Long facilityRrn) {
        this.facilityRrn = facilityRrn;
    }

    public String getProductId() {
        return productId;
    }

    public void setProductId(String productId) {
        this.productId = productId;
    }

    public String getProcessId() {
        return processId;
    }

    public void setProcessId(String processId) {
        this.processId = processId;
    }

    public String getLotId() {
        return lotId;
    }

    public void setLotId(String lotId) {
        this.lotId = lotId;
    }

    public String getRemark() {
        return remark;
    }

    public void setRemark(String remark) {
        this.remark = remark;
    }

    public String getCreateBy() {
        return createBy;
    }

    public void setCreateBy(String createBy) {
        this.createBy = createBy;
    }

    public Date getCreateTime() {
        return createTime;
    }

    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }

}