vince
2023-11-09 93e01fa050330ead95041ed11cc85e9765c19fc1
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.io.Serializable;
import java.util.Date;
 
@Data
public class GateWayTestParam implements Serializable {
    private static final long serialVersionUID = 1L;
    @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;
}