LotStepBomHistoryDO.java

package com.mycim.valueobject.inv;

import java.sql.Timestamp;

/**
 * bom消耗
 */
public class LotStepBomHistoryDO {
    private Long transRrn;
    private Long transSequence;
    private String transId;
    private Double transQty;
    private Timestamp transTime;
    private Long warehouseRrn;
    private String warehouseId;
    private Long itemRrn;
    private String materialLotNumber;
    private Long lotRrn;
    private Long stepSequence;
    private String batchId;
    private String bomConsumeType;
    private String bomConsumeMode;
    private String comments;
    private Long facilityRrn;

    public Long getTransRrn() {
        return transRrn;
    }

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

    public Long getTransSequence() {
        return transSequence;
    }

    public void setTransSequence(Long transSequence) {
        this.transSequence = transSequence;
    }

    public String getTransId() {
        return transId;
    }

    public void setTransId(String transId) {
        this.transId = transId;
    }

    public Double getTransQty() {
        return transQty;
    }

    public void setTransQty(Double transQty) {
        this.transQty = transQty;
    }

    public Timestamp getTransTime() {
        return transTime;
    }

    public void setTransTime(Timestamp transTime) {
        this.transTime = transTime;
    }

    public Long getWarehouseRrn() {
        return warehouseRrn;
    }

    public void setWarehouseRrn(Long warehouseRrn) {
        this.warehouseRrn = warehouseRrn;
    }

    public String getWarehouseId() {
        return warehouseId;
    }

    public void setWarehouseId(String warehouseId) {
        this.warehouseId = warehouseId;
    }

    public Long getItemRrn() {
        return itemRrn;
    }

    public void setItemRrn(Long itemRrn) {
        this.itemRrn = itemRrn;
    }

    public String getMaterialLotNumber() {
        return materialLotNumber;
    }

    public void setMaterialLotNumber(String materialLotNumber) {
        this.materialLotNumber = materialLotNumber;
    }

    public Long getLotRrn() {
        return lotRrn;
    }

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

    public Long getStepSequence() {
        return stepSequence;
    }

    public void setStepSequence(Long stepSequence) {
        this.stepSequence = stepSequence;
    }

    public String getBatchId() {
        return batchId;
    }

    public void setBatchId(String batchId) {
        this.batchId = batchId;
    }

    public String getBomConsumeType() {
        return bomConsumeType;
    }

    public void setBomConsumeType(String bomConsumeType) {
        this.bomConsumeType = bomConsumeType;
    }

    public String getBomConsumeMode() {
        return bomConsumeMode;
    }

    public void setBomConsumeMode(String bomConsumeMode) {
        this.bomConsumeMode = bomConsumeMode;
    }

    public String getComments() {
        return comments;
    }

    public void setComments(String comments) {
        this.comments = comments;
    }

    public Long getFacilityRrn() {
        return facilityRrn;
    }

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

}