mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-07-23 15:41:17 +08:00
小程序订单详情接口新增保险金额字段
This commit is contained in:
@@ -606,6 +606,10 @@ public class OrderService {
|
|||||||
if (StringUtils.isNotBlank(String.valueOf(stationInfo.getOccupyFee()))) {
|
if (StringUtils.isNotBlank(String.valueOf(stationInfo.getOccupyFee()))) {
|
||||||
vo.setOccupyFee(stationInfo.getOccupyFee());
|
vo.setOccupyFee(stationInfo.getOccupyFee());
|
||||||
}
|
}
|
||||||
|
// 保险金额
|
||||||
|
if (StringUtils.isNotBlank(String.valueOf(orderBasicInfo.getInsuranceAmount()))) {
|
||||||
|
vo.setInsuranceAmount(String.valueOf(orderBasicInfo.getInsuranceAmount()));
|
||||||
|
}
|
||||||
|
|
||||||
// 获取充电桩枪口信息
|
// 获取充电桩枪口信息
|
||||||
PileConnectorDetailVO pileConnectorDetailVO = pileService.queryPileConnectorDetail(vo.getPileConnectorCode());
|
PileConnectorDetailVO pileConnectorDetailVO = pileService.queryPileConnectorDetail(vo.getPileConnectorCode());
|
||||||
|
|||||||
@@ -94,6 +94,11 @@ public class UniAppOrderVO {
|
|||||||
*/
|
*/
|
||||||
private String pileConnectorStatus;
|
private String pileConnectorStatus;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 保险金额
|
||||||
|
*/
|
||||||
|
private String insuranceAmount;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 充电金额
|
* 充电金额
|
||||||
*/
|
*/
|
||||||
|
|||||||
Reference in New Issue
Block a user