无关风月
2025-08-27 b8abd1c4081c2c67c1f258b9956f4c60652d831d
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
package com.ruoyi.order.export;
 
import cn.afterturn.easypoi.excel.annotation.Excel;
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.annotations.ApiModel;
import lombok.Data;
 
import java.math.BigDecimal;
import java.time.LocalDateTime;
 
@Data
@ApiModel(value="充电订单Order导出对象")
public class ChargeOrderExport {
    // 订单编号
    @Excel(name = "订单编号", width = 20)
    private String orderNumber;
    // 订单类型
    @Excel(name = "订单类型", width = 20)
    private String orderType;
    // 充电方式
    @Excel(name = "充电方式", width = 20)
    private String chargeType;
    // 充电用户
    @Excel(name = "充电用户", width = 20)
    private String phone;
    // 开始时间
    @Excel(name = "开始时间", width = 20)
    private String beginTime;
    // 结束时间
    @Excel(name = "结束时间", width = 20)
    private String endTime;
    // 充电时长
    @Excel(name = "充电时长", width = 20)
    private String chargingDuration;
    // 充电电量
    @Excel(name = "充电电量", width = 20)
    private BigDecimal chargingCapacity;
    // 电站运营商
    @Excel(name = "电站运营商", width = 20)
    private String powerStationOperator;
    // 城市名称
    @Excel(name = "城市名称", width = 20)
    private String city;
    // 充电场站
    @Excel(name = "充电场站", width = 20)
    private String chargingStation;
    // 电站id
    @Excel(name = "电站id", width = 20)
    private Integer powerStationId;
    // 终端编码
    @Excel(name = "终端编码", width = 20)
    private String terminalCode;
    // 车牌号
    @Excel(name = "车牌号码", width = 20)
    private String plateNumber;
    // 电站价电费金额
    @Excel(name = "电站价电费金额", width = 20)
    private BigDecimal electricityAmount;
    // 电站价服务费金额
    @Excel(name = "电站价服务费金额", width = 20)
    private BigDecimal serviceAmount;
    // 电站价总金额
    @Excel(name = "电站价总金额", width = 20)
    private BigDecimal totalAmount;
    //获得积分
    @Excel(name = "获得绿电分", width = 20)
    private Integer point;
}