杨凯
2023-10-17 e7c9fc40786f387f2c0d65e10294317480b0f621
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
package com.consum.base.core;
 
 
import com.consum.base.core.po.WhFormProcure;
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){
 
    }
 
 
 
}