#
luxiaotao1123
2021-03-01 0497edd108397506301b181d7e934d546c092834
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package zy.cloud.wms.common.service;
 
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
 
/**
 * Created by vincent on 2021/3/1
 */
@Service("mainService")
public class MainService {
 
 
    @Transactional
    public void stockOutProcess() {
 
    }
 
 
}