czt
2025-12-03 53fab3f56e8335fbf39fc07c4e10f6abdb0505bb
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
package com.fzzy.igds.data;
 
import lombok.Data;
import lombok.EqualsAndHashCode;
import java.util.Date;
 
/**
 * @Description 出入库的页面参数定义
 * @Author CZT
 * @Date 2025/11/29 16:33
 */
@Data
@EqualsAndHashCode(callSuper = false)
public class InoutParam extends IgdsBaseParam {
 
    public String plateNum;
 
    private String id;
 
    private String progress;
 
    private String weightTag;
 
    private String type;
 
    private String foodVariety;
 
    private String foodType;
 
    private String checkStatus;
 
    private String customerName;
 
    private String recordStatus;
 
    private String userId;
 
    private String year;
 
    private double weight;//重量信息
 
    private Double deOther;
 
    private Double fullWeight;
 
    private String fullWeightUser;
 
    private Date fullWeightTime;
 
    private Double emptyWeight;
 
    private Date emptyWeightTime;
 
    private Date completeTime;
 
    private String emptyWeightUser;
 
    private Double netWeight;
 
    private Double settleWeight;
 
    private Double recordWeight;
 
    private Double price;
 
    private String settleBizType;
 
    private String settleTag;
 
    private Double settleMoney;
 
    private Date updateTime = new Date();
}