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;
|
|
}
|