mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-05-04 10:00:11 +08:00
后管页面分润数据新增 结算时间字段
This commit is contained in:
@@ -307,6 +307,7 @@ public class OrderSplitRecordServiceImpl implements OrderSplitRecordService {
|
||||
|
||||
SplitRecordInfoVO vo = SplitRecordInfoVO.builder()
|
||||
.orderCode(orderCode)
|
||||
.settlementTime(splitRecordVOList.get(0).getSettlementTime())
|
||||
.orderAmount(splitRecordVOList.get(0).getOrderAmount())
|
||||
.settleAmount(String.valueOf(splitRecordVOList.get(0).getSettleAmount()))
|
||||
|
||||
|
||||
@@ -16,6 +16,11 @@ public class OrderSplitRecordVO {
|
||||
*/
|
||||
private String stationId;
|
||||
|
||||
/**
|
||||
* 结算时间
|
||||
*/
|
||||
private String settlementTime;
|
||||
|
||||
/**
|
||||
* 订单金额
|
||||
*/
|
||||
|
||||
@@ -26,6 +26,11 @@ public class SplitRecordInfoVO {
|
||||
*/
|
||||
private String orderAmount;
|
||||
|
||||
/**
|
||||
* 结算时间
|
||||
*/
|
||||
private String settlementTime;
|
||||
|
||||
/**
|
||||
* 结算金额
|
||||
*/
|
||||
|
||||
@@ -803,6 +803,7 @@
|
||||
<select id="queryOrderSplitData" resultType="com.jsowell.pile.vo.web.OrderSplitRecordVO">
|
||||
SELECT
|
||||
t1.order_code AS orderCode,
|
||||
t2.settlement_time as settlementTime,
|
||||
t1.station_id AS stationId,
|
||||
t2.order_amount AS orderAmount,
|
||||
t1.settle_amount AS settleAmount,
|
||||
|
||||
Reference in New Issue
Block a user