自动化立体仓库 - WMS系统
#
pjb
2024-07-04 4e7fce25f60aaf58603a3d2f3d749d1a83675c44
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
package com.zy.asrs.task.handler;
 
import com.zy.asrs.entity.Pla;
import com.zy.asrs.service.PlaService;
import com.zy.asrs.task.AbstractHandler;
import com.zy.asrs.task.core.ReturnT;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
 
@Slf4j
@Service
@Transactional
public class PlaDetlHandler extends AbstractHandler<String> {
 
    @Autowired
    private PlaService plaService;
 
 
    public ReturnT<String> start(Pla pla) {
 
 
 
        return SUCCESS;
    }
}