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;
|
}
|