自动化立体仓库 - WMS系统
skyouc
3 天以前 7bac1f667a08787ce3f1ec722167ea96ad6332f1
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
26
27
28
29
package com.zy.api.service.impl;
 
import com.core.common.R;
import com.zy.api.entity.CallAgvParams;
import com.zy.api.enums.OrderType;
import com.zy.api.service.AgvScheduleService;
import org.springframework.stereotype.Service;
 
@Service
public class AgvScheduleServiceImpl implements AgvScheduleService {
 
    /**
     * @author Ryan
     * @date 2025/11/3
     * @description: 呼叫AGV搬运
     * @version 1.0
     */
    @Override
    public R callAgvCarry(CallAgvParams params) {
        if (params.getType().equals(OrderType.ORDER_OUT.type)) {
            //缓存区出库
        } else if (params.getType().equals(OrderType.ORDER_IN.type)) {
            //缓存区入库
        } else {
 
        }
        return R.ok();
    }
}