mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-26 05:55:03 +08:00
新增 查询占桩订单费用相关接口
This commit is contained in:
@@ -7,6 +7,7 @@ import lombok.NoArgsConstructor;
|
||||
import org.apache.commons.lang3.builder.EqualsBuilder;
|
||||
import org.apache.commons.lang3.builder.HashCodeBuilder;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
@@ -57,6 +58,16 @@ public class StationInfoVO {
|
||||
*/
|
||||
private String totalPrice;
|
||||
|
||||
/**
|
||||
* 占桩免费时长
|
||||
*/
|
||||
private Integer freeTime;
|
||||
|
||||
/**
|
||||
* 占桩费率
|
||||
*/
|
||||
private BigDecimal occupyFee;
|
||||
|
||||
/**
|
||||
* 快充枪口总数
|
||||
*/
|
||||
|
||||
@@ -5,6 +5,8 @@ import lombok.Builder;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
|
||||
@Data
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
@@ -39,4 +41,14 @@ public class CurrentTimePriceDetails {
|
||||
* 电费 + 服务费 每度单价
|
||||
*/
|
||||
private String totalPrice;
|
||||
|
||||
/**
|
||||
* 占桩免费时长
|
||||
*/
|
||||
private Integer freeTime;
|
||||
|
||||
/**
|
||||
* 占桩费率
|
||||
*/
|
||||
private BigDecimal occupyFee;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user