MesService.java 495 Bytes
package com.huaheng.api.mes.service;

import com.huaheng.framework.web.domain.AjaxResult;

public interface MesService {

    AjaxResult searchInventory(String materialCode,String area);

    AjaxResult searchLocations(String area,String locationCode);

    AjaxResult searchWarehouse();

    AjaxResult searchContainer();

    AjaxResult searchMaterialWarning();

    AjaxResult searchZone();

    AjaxResult back(Integer id);

    AjaxResult returnQuery(String referCode, String referType);
}