LaneModel.java 885 Bytes
package com.viontech.vo.traffic;

import com.fasterxml.jackson.annotation.JsonFormat;
import com.fasterxml.jackson.annotation.JsonInclude;
import lombok.Data;

import java.util.Date;

/**
 * @author msl
 * @date 2022/5/7
 */
@Data
@JsonInclude(value = JsonInclude.Include.NON_NULL)
public class LaneModel {
    private String tollgateID;
    private Integer laneId;
    private Integer laneNo;
    private String name;
    private String direction;
    private String apeID;
    /**
     * 创建时间
     */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss.SSS", timezone = "GMT+8")
    private Date createTime;
    /**
     * 修改时间
     */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss.SSS", timezone = "GMT+8")
    private Date modifyTime;
    //
    private String modifyTime_gte;
    private String modifyTime_lte;
    private Integer offset;
    private Integer limit;
}