杨凯
2023-10-18 caf451f76ac30aa222230e0bc2d0d7cb9f420bdf
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
package com.consum.base.core;
 
import lombok.Data;
 
import java.util.List;
 
@Data
public class CheckUsingParam {
 
    /**
     * 是否入库  true 是 false 否(出库)
     */
    private Boolean isCheckIn;
    /**
     * 入库类型 1=分发入库
     */
    private int input_type;
 
    /**
     * 分发出库结果
     */
    private List<CheckWarehouseResult> outputList;
 
    /**
     * 分发表ID
     */
    private Long lending_id;
 
    /**
     * 型号ID
     */
    private String model_id;
 
    /**
     * 出库数量
     */
    private int outputCount;
 
}