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

import com.huaheng.api.mes.domain.MesDomain;
import com.huaheng.framework.web.domain.AjaxResult;
import com.huaheng.framework.web.domain.Result;

public interface MesService {

    AjaxResult receipt(MesDomain mesDomain);

    AjaxResult shipment(MesDomain mesDomain);
}