新增 运营端小程序通过订单编号查询订单详情接口

This commit is contained in:
Lemon
2024-09-06 10:38:00 +08:00
parent 7e194ec430
commit b573bfb015
11 changed files with 228 additions and 13 deletions

View File

@@ -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;
}

View File

@@ -65,4 +65,9 @@ public class BusinessConnectorInfoVO {
private Integer faultConnectorNum;
private List<PileConnectorInfoVO> pileConnectorInfoVOList;
/**
* 运营端小程序枪口详情信息
*/
private BusinessConnectorDetailVO businessConnectorDetail;
}

View File

@@ -136,4 +136,9 @@ public class OrderVO {
private BigDecimal totalElectricityAmount;
private BigDecimal totalServiceAmount;
/**
* 订单创建时间
*/
private String createTime;
}