运营商查询订单报表方法添加站点名称并分页

This commit is contained in:
Lemon
2023-06-15 17:39:23 +08:00
parent 0b16ac9d06
commit 6dd8e2f51e
7 changed files with 130 additions and 18 deletions

View File

@@ -12,7 +12,7 @@ public class MerchantOrderReportVO {
private MerchantOrderReport merchantOrderReport;
private List<SettleOrderReport> reportList;
private List<SettleOrderReportVO> reportList;
@Data
public static class MerchantOrderReport{

View File

@@ -0,0 +1,85 @@
package com.jsowell.pile.vo.web;
import com.jsowell.common.annotation.Excel;
import lombok.Data;
import java.math.BigDecimal;
/**
* 订单报表vo运营商详情页面用
*
* @author Lemon
* @Date 2023/6/15 17:25
*/
@Data
public class SettleOrderReportVO {
/**
* 主键
*/
private Long id;
/**
* 运营商id
*/
private String merchantId;
/**
* 站点id
*/
private String stationId;
/**
* 站点名称
*/
private String stationName;
/**
* 用电度数
*/
private BigDecimal useElectricity;
/**
* 充电次数
*/
private String chargeNum;
/**
* 充电时长
*/
private String chargeTime;
/**
* 电费金额
*/
private BigDecimal electricityAmount;
/**
* 服务费金额
*/
private BigDecimal serviceAmount;
/**
* 收入金额
*/
private BigDecimal totalAmount;
/**
* 虚拟金额
*/
private BigDecimal virtualAmount;
/**
* 交易日期
*/
private String tradeDate;
/**
* 交易金额
*/
private BigDecimal tradeAmount;
/**
* 交易手续费
*/
private BigDecimal tradeFee;
}