mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-21 11:35:12 +08:00
新增 软杰道闸系统对接
This commit is contained in:
@@ -0,0 +1,52 @@
|
||||
package com.jsowell.pile.dto.ruanjie;
|
||||
|
||||
import com.alibaba.fastjson2.annotation.JSONField;
|
||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 软杰使用优惠券DTO
|
||||
*
|
||||
* @author Lemon
|
||||
* @Date 2023/9/22 8:42
|
||||
*/
|
||||
@Data
|
||||
public class UseCouponDTO {
|
||||
|
||||
/**
|
||||
* 客户编号
|
||||
* 该值由厂商提供
|
||||
*/
|
||||
private String fCustNo;
|
||||
|
||||
/**
|
||||
* 车牌号码
|
||||
* 该值来源进场数据
|
||||
*/
|
||||
@JsonProperty(value = "fPlateCode")
|
||||
private String fPlateCode;
|
||||
|
||||
/**
|
||||
* 优惠券类型ID
|
||||
* 0 表示 免费停车
|
||||
* 1 表示 抵扣金额(元)
|
||||
* 2 表示 抵扣时间
|
||||
*/
|
||||
@JsonProperty(value = "fCouponType")
|
||||
private String fCouponType;
|
||||
|
||||
/**
|
||||
* 优惠券面值
|
||||
* fCouponType=0 时 fCouponValue=”0” 免费停车优惠券
|
||||
* fCouponType=1时 fCouponValue 表示实际抵扣金额,单位元。
|
||||
* fCouponType=2时 fCouponValue 表示实际抵扣时间,单位分钟
|
||||
*/
|
||||
@JsonProperty(value = "fCouponValue")
|
||||
private String fCouponValue;
|
||||
|
||||
/**
|
||||
* 优惠券编号
|
||||
*/
|
||||
@JsonProperty(value = "fCouponCode")
|
||||
private String fCouponCode;
|
||||
}
|
||||
Reference in New Issue
Block a user