Blame view

src/main/java/com/huaheng/api/acs/service/AcsServiceImpl.java 612 Bytes
pengcheng authored
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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 TODO
 * @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;
    }
}