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