jiazx0107@163.com
2023-11-18 41cd6c8db40bceb08290828ae0d4fc5caeea7147
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.fzzy.gateway.entity;
 
import com.bstek.dorado.annotation.PropertyDef;
import lombok.Data;
 
import java.util.Date;
 
@Data
public class GateWayParam {
    @PropertyDef(label = "开始时间")
    private Date start;
    @PropertyDef(label = "截止时间")
    private Date end;
    @PropertyDef(label = "执行时间")
    private Date dayTime;
    @PropertyDef(label = "重量")
    private Double weight;
    @PropertyDef(label = "车牌号")
    private String carNumber;
    private String deviceId;
    private String bizType;
}