1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package com.zy.asrs.wcs.core.service.impl;
|
| import lombok.extern.slf4j.Slf4j;
| import org.springframework.stereotype.Service;
| import org.springframework.transaction.annotation.Transactional;
|
| /**
| * 立体仓库WCS系统主流程业务
| * Created by vincent on 2020/8/6
| */
| @Slf4j
| @Service("mainService")
| @Transactional
| public class MainServiceImpl {
|
|
|
| }
|
|