luodangjia
2024-10-31 e25b31c6abf9b26f2b61768ad6039961574b10a1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
package com.ruoyi.order.api.vo;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
 
/**
 * @author zhibing.pu
 * @Date 2024/9/3 14:00
 */
@Data
public class AccountingStrategyDetailOrderVo {
    @ApiModelProperty(value = "主键")
    private Integer id;
    @ApiModelProperty(value = "策略id")
    private Integer accountingStrategyId;
    
    @ApiModelProperty(value = "阶段(1=尖阶段,2=峰阶段,3=平阶段,4=谷阶段)")
    private Integer type;
    
    @ApiModelProperty(value = "开始时间")
    private String startTime;
    
    @ApiModelProperty(value = "结束时间")
    private String endTime;
    
    @ApiModelProperty(value = "电价")
    private BigDecimal electrovalence;
    
    @ApiModelProperty(value = "服务费")
    private BigDecimal serviceCharge;
    
    @ApiModelProperty(value = "原价服务费")
    private BigDecimal costServiceCharge;
    
    @ApiModelProperty(value = "充电订单id")
    private Long chargingOrderId;
    
    private Long start;
    private Long end;
    private BigDecimal chargingCapacity;
}