QueryEntity.java 490 Bytes
package com.huaheng.api.erp.domain;

public class QueryEntity {

    private String materialCode;

    private String locationCode;

    public String getMaterialCode() {
        return materialCode;
    }

    public void setMaterialCode(String materialCode) {
        this.materialCode = materialCode;
    }

    public String getLocationCode() {
        return locationCode;
    }

    public void setLocationCode(String locationCode) {
        this.locationCode = locationCode;
    }
}