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
| package com.ld.igds.protocol.weight;
|
| import lombok.Data;
|
| import java.io.Serializable;
|
| /**
| * @Desc: 地磅接口返回数据封装
| * @author: andy.jia
| * @update-time: 2023/2/18 16:41
| */
| @Data
| public class WeightResult implements Serializable {
|
| private String gateway;
|
| private String deviceId;
|
| private String actionCode;
|
|
| private String code;
|
| private String msg;
|
| private String time;
|
| private String plateNum;
|
| private String icCardNo;
|
|
| }
|
|