package com.ruoyi.order.api.vo;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.ruoyi.order.api.model.TChargingOrder;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
|
@Data
|
@ApiModel(value = "SettlementExportVO对象", description = "结算下载导出信息")
|
public class SettlementExportVO extends TChargingOrder {
|
|
@ApiModelProperty(value = "站点编号")
|
private String siteCode;
|
@ApiModelProperty(value = "站点名称")
|
private String siteName;
|
@ApiModelProperty(value = "终端名称")
|
private String name;
|
@ApiModelProperty(value = "所属城市")
|
private String city;
|
@ApiModelProperty(value = "所属市区")
|
private String districts;
|
@ApiModelProperty(value = "所属合作商")
|
private String partnerName;
|
@ApiModelProperty(value = "电站类型")
|
private String siteType;
|
@ApiModelProperty(value = "售电模式")
|
private String electronicType;
|
@ApiModelProperty(value = "站点状态")
|
private String siteStatus;
|
@ApiModelProperty(value = "运营类型")
|
private String businessCategory;
|
@ApiModelProperty(value = "计费策略")
|
private String accountingStrategy;
|
@ApiModelProperty(value = "收款方式")
|
private String payTypeName;
|
@ApiModelProperty(value = "订单创建时间")
|
private String createTime1;
|
@ApiModelProperty(value = "充电开始时间")
|
private String startTime1;
|
@ApiModelProperty(value = "充电结束时间")
|
private String endTime1;
|
@ApiModelProperty(value = "订单状态")
|
private String statusName;
|
@ApiModelProperty(value = "订单类型")
|
private String orderTypeName;
|
@ApiModelProperty(value = "充电形式")
|
private String chargingType;
|
@ApiModelProperty(value = "充电结束账号")
|
private String phone;
|
@ApiModelProperty(value = "是否免费订单")
|
private String isFree;
|
@ApiModelProperty(value = "平均电费单价")
|
private String averageElectronic;
|
@ApiModelProperty(value = "平均服务费实际单价")
|
private String averageServiceChargeReal;
|
@ApiModelProperty(value = "平均服务费挂牌单价")
|
private String averageServiceCharge;
|
|
@ApiModelProperty(value = "充电时长(分钟)")
|
private String chargingSecond;
|
@ApiModelProperty(value = "充电前soc")
|
private String startSoc;
|
@ApiModelProperty(value = "充电后soc")
|
private String endSoc;
|
@ApiModelProperty(value = "是否限制SOC")
|
private String isSoc;
|
@ApiModelProperty(value = "限制SOC方式")
|
private String socType;
|
@ApiModelProperty(value = "限制Soc值")
|
private String socValue;
|
@ApiModelProperty(value = "客户类型")
|
private String userType;
|
@ApiModelProperty(value = "会员类型")
|
private String vipType;
|
@ApiModelProperty(value = "是否PLUS订单")
|
private String isPlus;
|
@ApiModelProperty(value = "客户编号")
|
private String userCode;
|
@ApiModelProperty(value = "真实姓名")
|
private String realName;
|
@ApiModelProperty(value = "设备号")
|
private String deviceCode;
|
@ApiModelProperty(value = "手机号")
|
private String userPhone;
|
@ApiModelProperty(value = "车牌号")
|
private String licensePlate;
|
@ApiModelProperty(value = "选择车型")
|
private String vehicleModel;
|
@ApiModelProperty(value = "车辆品牌")
|
private String vehicleBrand;
|
|
@ApiModelProperty(value = "电费结算方编码")
|
private String confirmCode;
|
@ApiModelProperty(value = "电费结算方法名称(管理公司)")
|
private String companyName;
|
@ApiModelProperty(value = "计费方式")
|
private String moneyType;
|
@ApiModelProperty(value = "设备接入方式")
|
private String deviceType;
|
@ApiModelProperty(value = "预支付类型")
|
private String beforePayType;
|
@ApiModelProperty(value = "是否安全防护订单")
|
private String isSafe;
|
}
|