mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-23 20:45:10 +08:00
运营商查询订单报表方法添加站点名称并分页
This commit is contained in:
@@ -12,7 +12,7 @@ public class MerchantOrderReportVO {
|
||||
|
||||
private MerchantOrderReport merchantOrderReport;
|
||||
|
||||
private List<SettleOrderReport> reportList;
|
||||
private List<SettleOrderReportVO> reportList;
|
||||
|
||||
@Data
|
||||
public static class MerchantOrderReport{
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user