mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-24 21:15:06 +08:00
新增 运营端小程序收费明细接口
(cherry picked from commit d5eae744a28c1b29a7cbed0019239e05da3868f7)
This commit is contained in:
@@ -0,0 +1,57 @@
|
||||
package com.jsowell.pile.vo.uniapp.business;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Builder;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
|
||||
/**
|
||||
* 运营端小程序订单时段费用明细VO
|
||||
*
|
||||
* @author Lemon
|
||||
* @Date 2024/10/23 15:20:20
|
||||
*/
|
||||
@Data
|
||||
@AllArgsConstructor
|
||||
@NoArgsConstructor
|
||||
@Builder
|
||||
public class BusinessOrderBillingInfoVO {
|
||||
/**
|
||||
* 时段类型(1-尖时;2-峰时;3-平时;4-谷时)
|
||||
* @see com.jsowell.common.enums.ykc.BillingTimeTypeEnum
|
||||
*/
|
||||
private String timeType;
|
||||
|
||||
/**
|
||||
* 开始时间
|
||||
*/
|
||||
private String startTime;
|
||||
|
||||
/**
|
||||
* 结束时间
|
||||
*/
|
||||
private String endTime;
|
||||
|
||||
/**
|
||||
* 该时段用电量
|
||||
*/
|
||||
private BigDecimal usedElectricity;
|
||||
|
||||
/**
|
||||
* 该时段消费金额
|
||||
*/
|
||||
private BigDecimal timeAmount;
|
||||
|
||||
/**
|
||||
* 该时段电费
|
||||
*/
|
||||
private BigDecimal timeElectricityPrice;
|
||||
|
||||
/**
|
||||
* 该时段服务费
|
||||
*/
|
||||
private BigDecimal timeServicePrice;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user