#
luxiaotao1123
2021-02-25 365a97f64f9f9db2151222c8041c5fa92a67a47a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package zy.cloud.wms.manager.service.impl;
 
import com.alibaba.fastjson.JSON;
import org.springframework.stereotype.Service;
import zy.cloud.wms.manager.entity.param.StockInParam;
import zy.cloud.wms.manager.service.WorkService;
 
/**
 * Created by vincent on 2021/2/25
 */
@Service("workService")
public class WorkServiceImpl implements WorkService {
 
 
    @Override
    public String stockIn(StockInParam param, Long userId) {
        System.out.println(JSON.toJSONString(param));
        return null;
    }
}