深圳停车平台

This commit is contained in:
Guoqs
2025-02-12 16:08:10 +08:00
parent f8859528c2
commit 3b444796d8
5 changed files with 83 additions and 45 deletions

View File

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

View File

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