自动化立体仓库 - WMS系统
#
luxiaotao1123
2022-12-08 6559c51b0ddc00a14a7589bc57bbfec4a01a0b2f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.zy.common.service.erp;
 
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.jdbc.core.JdbcTemplate;
import org.springframework.stereotype.Service;
 
/**
 * Created by vincent on 2020/11/27
 */
@Slf4j
@Service
public class ErpService {
 
    @Autowired
    private ErpSqlServer erpSqlServer;
    @Autowired
    private JdbcTemplate jdbcTemplate;
 
    //////////////////////成品、原材料入库通知单数据提取//////////////////////////////////////////////////
 
}