CZT
2023-08-27 ccaaeabc10a1baec59d8d9d23244308df5d6e14b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.ld.igds.phone.param;
 
import lombok.Data;
 
/**
 * 值仓列表、值仓提交数据封装
 * @author chen
 */
@Data
public class ParamInoutHandle extends CommonParam {
 
    private String id;
 
    private String intelCard;
 
    private String plateNum;
 
    private Double deHandle;
 
    private String fileName1;
 
    private String fileName2;
 
}