充电停车优惠

This commit is contained in:
Guoqs
2025-01-21 16:41:50 +08:00
parent ed1d5c7fec
commit 432608a238
3 changed files with 158 additions and 0 deletions

View File

@@ -0,0 +1,46 @@
package com.jsowell.pile.vo.web;
import lombok.Data;
/**
* 充电停车优惠VO
*/
@Data
public class ChargeParkingDiscountVO {
/**
* 站点id
*/
private String stationId;
/**
* 门槛类型 1-固定电量2-固定时长
*/
private String conditionType;
/**
* 门槛值
*/
private String conditionValue;
/**
* 优惠类型 (满足门槛后优惠类型)
* 1-减时间单位分钟
* 2-减金额单位元
*/
private String discountType;
/**
* 优惠值
*/
private String discountValue;
/**
* 优惠生效时间
*/
private String startTime;
/**
* 优惠失效时间
*/
private String endTime;
}