duhuizhe
2023-10-16 3aa55dd3f62cee2c1c4c0aa74e1570acf83f8927
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
package com.consum.base.core;
 
 
import com.consum.base.core.po.WhFormProcure;
import com.consum.base.core.po.WhFormTransfer;
import org.springframework.stereotype.Service;
 
/**
 * 统一出入库接口
 */
@Service
public class UnifyBusinessService {
 
    /**
     * 采购入库
     * @param procure
     */
    public void procure(WhFormProcure procure){
 
    }
 
 
    /**
     * 调拨出库
     * @param transfer
     */
    public void transferOutput(WhFormTransfer transfer){
 
    }
 
    /**
     * 调拨入库
     * @param transfer
     */
    public void transferInput(WhFormTransfer transfer){
 
    }
 
 
 
}