package com.ruoyi.integration.barrierGate.model;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
import lombok.Data;
|
|
/**
|
* 云停车订单实体
|
* @author zhibing.pu
|
* @Date 2024/9/5 15:54
|
*/
|
@Data
|
public class OfflineParkingOrder {
|
/**
|
* 停车场appKey
|
*/
|
private String appkey;
|
/**
|
* 10 位时间戳
|
*/
|
private String timestamp;
|
/**
|
* 签名
|
*/
|
private String sign;
|
/**
|
* 进出记录 ID
|
*/
|
private String id;
|
/**
|
* 卡号
|
*/
|
private String cardid;
|
/**
|
* 会员 ID
|
*/
|
private String memberid;
|
/**
|
* 会员类型
|
*/
|
private String membertype;
|
/**
|
* 会员姓名
|
*/
|
private String name;
|
/**
|
* 车牌号
|
*/
|
private String platenumber;
|
/**
|
* 车牌颜色
|
*/
|
private String platecolor;
|
/**
|
* 入场通道
|
*/
|
private String enterchannel;
|
/**
|
* 入场时间
|
*/
|
private String entertime;
|
/**
|
* 是否库中库 0、不是库中库,1、是库中库
|
*/
|
private Integer subplace;
|
/**
|
* 抓拍图片(base64)
|
*/
|
private String image;
|
/**
|
* 备注
|
*/
|
private String remark;
|
/**
|
* 停车时长(分钟)
|
*/
|
@JsonProperty("long")
|
private String longTime;
|
/**
|
* 停车费用
|
*/
|
private String money;
|
/**
|
* 出场通道
|
*/
|
private String leavechannel;
|
/**
|
* 出场时间
|
*/
|
private String leavetime;
|
}
|