mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-25 05:25:12 +08:00
新增 运营端小程序通过订单编号查询订单详情接口
This commit is contained in:
@@ -0,0 +1,59 @@
|
||||
package com.jsowell.pile.vo.uniapp.business;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Builder;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
/**
|
||||
* 运营端小程序枪口详情信息
|
||||
*
|
||||
* @author Lemon
|
||||
* @Date 2024/9/4 8:49:09
|
||||
*/
|
||||
@Data
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
@Builder
|
||||
public class BusinessConnectorDetailVO {
|
||||
|
||||
/**
|
||||
* 枪口编号
|
||||
*/
|
||||
private String pileConnectorCode;
|
||||
|
||||
/**
|
||||
* 枪口状态
|
||||
*/
|
||||
private String status;
|
||||
|
||||
/**
|
||||
* 订单号
|
||||
*/
|
||||
private String orderCode;
|
||||
|
||||
/**
|
||||
* 起始soc
|
||||
*/
|
||||
private String startSOC;
|
||||
|
||||
/**
|
||||
* 终止soc
|
||||
*/
|
||||
private String endSOC;
|
||||
|
||||
/**
|
||||
* 充电度数
|
||||
*/
|
||||
private String chargeDegree;
|
||||
|
||||
/**
|
||||
* 剩余时长
|
||||
*/
|
||||
private String timeRemaining;
|
||||
|
||||
/**
|
||||
* 故障原因
|
||||
*/
|
||||
private String faultReason;
|
||||
}
|
||||
@@ -65,4 +65,9 @@ public class BusinessConnectorInfoVO {
|
||||
private Integer faultConnectorNum;
|
||||
|
||||
private List<PileConnectorInfoVO> pileConnectorInfoVOList;
|
||||
|
||||
/**
|
||||
* 运营端小程序枪口详情信息
|
||||
*/
|
||||
private BusinessConnectorDetailVO businessConnectorDetail;
|
||||
}
|
||||
|
||||
@@ -136,4 +136,9 @@ public class OrderVO {
|
||||
private BigDecimal totalElectricityAmount;
|
||||
|
||||
private BigDecimal totalServiceAmount;
|
||||
|
||||
/**
|
||||
* 订单创建时间
|
||||
*/
|
||||
private String createTime;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user