mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-30 16:10:03 +08:00
深圳停车平台
This commit is contained in:
@@ -1,37 +0,0 @@
|
||||
package com.jsowell.thirdparty.parking.common;
|
||||
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
/**
|
||||
* @desc: 临时车信息
|
||||
* @date: 2021-11-01 14:55
|
||||
*/
|
||||
@Setter
|
||||
@Getter
|
||||
public class TempCarInfo {
|
||||
//入场时间
|
||||
String inTime;
|
||||
//停车时长
|
||||
String stopTime;
|
||||
//停车时间戳
|
||||
String stopTimeSecond;
|
||||
//需交费
|
||||
Double amount;
|
||||
//总应收
|
||||
Double totalFee;
|
||||
//已缴费用
|
||||
Double beforePay;
|
||||
//已优惠,单位:分钟/元
|
||||
String discountVal;
|
||||
//优惠券类型 1.金额(分钟) 2.时间(元)
|
||||
Integer discountType;
|
||||
//通道ID 场内支付(为空) 出口扫码支付(必填)
|
||||
Integer laneId;
|
||||
//平台进出场ID (平台ID与本地ID不能同时为空)
|
||||
Integer recordId;
|
||||
//本地进出场ID (平台ID与本地ID不能同时为空)
|
||||
Integer localId;
|
||||
//入场图片
|
||||
String inPic;
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
package com.jsowell.thirdparty.parking.common.bean;
|
||||
|
||||
import lombok.*;
|
||||
|
||||
/**
|
||||
* qcyun停车券DTO
|
||||
*/
|
||||
|
||||
@Data
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
@Builder
|
||||
public class QcyunParkCouponDTO {
|
||||
// 车牌号
|
||||
private String plateNumber;
|
||||
|
||||
// 站点id
|
||||
private String stationId;
|
||||
|
||||
// 站点名称
|
||||
private String stationName;
|
||||
|
||||
private String parkId;
|
||||
}
|
||||
Reference in New Issue
Block a user