mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-08-16 11:07:36 +08:00
add 新增运营端小程序查询订单详情接口
This commit is contained in:
@@ -1,11 +1,14 @@
|
||||
package com.jsowell.pile.vo.uniapp.business;
|
||||
|
||||
import com.jsowell.pile.vo.uniapp.customer.BillingPriceVO;
|
||||
import com.jsowell.pile.vo.web.OrderDetailInfoVO;
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Builder;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 运营端小程序订单详情VO
|
||||
@@ -195,4 +198,50 @@ public class BusinessOrderDetailInfoVO {
|
||||
*/
|
||||
private String timeRemaining;
|
||||
|
||||
/**
|
||||
* 充电开始时间
|
||||
*/
|
||||
private String chargeStartTime;
|
||||
|
||||
/**
|
||||
* 充电结束时间
|
||||
*/
|
||||
private String chargeEndTime;
|
||||
|
||||
/**
|
||||
* 订单来源
|
||||
*/
|
||||
private String orderSource;
|
||||
|
||||
/**
|
||||
* 外部交易流水号
|
||||
*/
|
||||
private String outTransactionCode;
|
||||
|
||||
/**
|
||||
* 充电类型
|
||||
*/
|
||||
private String chargeType;
|
||||
|
||||
/**
|
||||
* 车牌号
|
||||
*/
|
||||
private String plateNumber;
|
||||
|
||||
/**
|
||||
* 车架号
|
||||
*/
|
||||
private String vinCode;
|
||||
|
||||
private BigDecimal orderAmount;
|
||||
|
||||
private BigDecimal discountAmount;
|
||||
|
||||
private String phoneNumber;
|
||||
|
||||
private String cardNumber;
|
||||
|
||||
private List<BillingPriceVO> priceList;
|
||||
|
||||
private List<OrderDetailInfoVO.PileMonitorData> pileMonitorDataList;
|
||||
}
|
||||
|
||||
@@ -158,4 +158,10 @@ public class OrderVO {
|
||||
private String memberId;
|
||||
|
||||
private String phoneNumber;
|
||||
|
||||
private String thirdPartyType;
|
||||
|
||||
private String vinCode;
|
||||
|
||||
private String cardNumber;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user