luodangjia
2024-09-10 ce19680b98669f8b4e66b2ce82fe0dcebe178445
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
package com.ruoyi.chargingPile.export;
 
import cn.afterturn.easypoi.excel.annotation.Excel;
import com.baomidou.mybatisplus.annotation.TableField;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.io.Serializable;
import java.math.BigDecimal;
 
@Data
@ApiModel(value = "导出充电算帐单-导出")
public class TParkingRecordExport implements Serializable {
 
    @Excel(name = "账单编号",width = 30)
    private String code;
    @Excel(name  = "站点名称",width = 30)
    private String siteName;
    @Excel(name  = "出场时间",width = 30)
    private String outParkingTime;
    @Excel(name  = "进场时间",width = 30)
    private String inParkingTime;
    @Excel(name = "车牌号",width = 30)
    private String licensePlate;
    @Excel(name = "车辆颜色",width = 30)
    private String vehicleColor;
    @Excel(name  = "总费用",width = 30)
    private BigDecimal orderAmount;
    @Excel(name  = "超时占位费",width = 30)
    private BigDecimal timeoutAmount;
    @Excel(name  = "停车费",width = 30)
    private BigDecimal amount;
    @Excel(name  = "免费时长(分钟)",width = 30)
    private Integer freeDuration;
    @Excel(name  = "停车总时长(分钟)",width = 30)
    private Integer parkingDuration;
    @Excel(name  = "收费时长(分钟)",width = 30)
    private Integer payDuration;
 
}