/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package com.essar.mes.services.inventory;

import com.essar.mes.service.framework.annotations.ServiceField;

/**
 *
 * @author Administrator
 */
public class SAPMaterial {

    @ServiceField(name="MATERIAL_ID")
    private String id;

    public String getId() {
        return id;
    }

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


}
