AcsServiceImpl.java
607 Bytes
package com.huaheng.api.acs.service;
import com.huaheng.api.acs.domain.AgvTask;
import com.huaheng.api.acs.domain.StateInfoUploadModel;
import com.huaheng.framework.web.domain.AjaxResult;
import org.springframework.stereotype.Service;
/**
* @ClassName AcsServiceImpl
* @Description
* @Author Administrator
* @Date 2019/12/2615:38
*/
@Service
public class AcsServiceImpl implements AcsService {
@Override
public AjaxResult StateInfoUpload(StateInfoUploadModel model) {
return null;
}
@Override
public AjaxResult TaskConfirm(AgvTask agvTask) {
return null;
}
}