叶松
2023-11-24 ef1fe4aa7c40c329cd8800a06ca02fc8341775ee
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
package com.thhy.materials.modules.biz.weigh.entity;
 
import lombok.Data;
import lombok.Getter;
import lombok.Setter;
import lombok.ToString;
 
import java.io.Serializable;
 
@Data
@Getter
@Setter
@ToString
public class TWeighbridge implements Serializable {
    /**
     * 
     */
    private Integer weighbridgeId;
 
    /**
     * 数据id
     */
    private String id;
 
    /**
     * 过磅编号
     */
    private String code;
 
    /**
     * 业务所属机构
     */
    private String orgname;
 
    /**
     * 供应单位名称
     */
    private String supplyorgname;
 
    /**
     * 运输车牌号
     */
    private String carnumber;
 
    /**
     * 运输司机
     */
    private String drivername;
 
    /**
     * 原料名称
     */
    private String matname;
 
    /**
     * 原材料型号
     */
    private String matmodel;
 
    /**
     * 过毛时间
     */
    private String mpoundtime;
 
    /**
     * 过磅毛重 千克 kg
     */
    private String mpoundweight;
 
    /**
     * 过毛人
     */
    private String mpoundname;
 
    /**
     * 皮重时间
     */
    private String ppoundtime;
 
    /**
     * 皮重
     */
    private String ppoundweight;
 
    /**
     * 过皮人
     */
    private String ppoundname;
 
    /**
     * 过磅净重
     */
    private String jpoundweight;
 
    /**
     * 扣重
     */
    private String buckleweight;
 
    /**
     * 毛重
     */
    private String mweight;
 
    /**
     * 皮重
     */
    private String pweight;
 
    /**
     * 净重
     */
    private String jweight;
 
    /**
     * 入库仓名称
     */
    private String warename;
 
    /**
     * 过磅图片,最多会有四张图片路径,逗号隔开
     */
    private String fileimage;
 
    /**
     * 1未同步2已同步
     */
    private Integer types;
 
    /**
     * This field was generated by MyBatis Generator.
     * This field corresponds to the database table t_weighbridge
     *
     * @mbg.generated Fri Nov 24 11:06:42 CST 2023
     */
    private static final long serialVersionUID = 1L;
}