ErpMesProductBindBean.java

package com.mycim.valueobject.erp;

import com.mycim.valueobject.bas.NamedObject;

import java.io.Serializable;

public class ErpMesProductBindBean extends NamedObject implements Serializable {

    private String  mesProductId ;
    private long    mesProductRrn;
    private String  erpProductId;
    private String  erpOrderId;
    private String  erpMandt;
    private String  erpWerks;

    public ErpMesProductBindBean() {
    }

    public ErpMesProductBindBean(String mesProductId, long mesProductRrn, String erpProductId,
                                 String erpOrderId, String erpMandt, String erpWerks) {
        this.mesProductId = mesProductId;
        this.mesProductRrn = mesProductRrn;
        this.erpProductId = erpProductId;
        this.erpOrderId = erpOrderId;
        this.erpMandt = erpMandt;
        this.erpWerks = erpWerks;
    }

    public String getMesProductId() {
        return mesProductId;
    }

    public void setMesProductId(String mesProductId) {
        this.mesProductId = mesProductId;
    }

    public long getMesProductRrn() {
        return mesProductRrn;
    }

    public void setMesProductRrn(long mesProductRrn) {
        this.mesProductRrn = mesProductRrn;
    }

    public String getErpProductId() {
        return erpProductId;
    }

    public void setErpProductId(String erpProductId) {
        this.erpProductId = erpProductId;
    }

    public String getErpOrderId() {
        return erpOrderId;
    }

    public void setErpOrderId(String erpOrderId) {
        this.erpOrderId = erpOrderId;
    }

    public String getErpMandt() {
        return erpMandt;
    }

    public void setErpMandt(String erpMandt) {
        this.erpMandt = erpMandt;
    }

    public String getErpWerks() {
        return erpWerks;
    }

    public void setErpWerks(String erpWerks) {
        this.erpWerks = erpWerks;
    }

}