后管页面分润数据新增 结算时间字段

This commit is contained in:
Lemon
2025-05-12 09:34:09 +08:00
parent 34975d28cf
commit 2e959ab845
4 changed files with 12 additions and 0 deletions

View File

@@ -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()))

View File

@@ -16,6 +16,11 @@ public class OrderSplitRecordVO {
*/
private String stationId;
/**
* 结算时间
*/
private String settlementTime;
/**
* 订单金额
*/

View File

@@ -26,6 +26,11 @@ public class SplitRecordInfoVO {
*/
private String orderAmount;
/**
* 结算时间
*/
private String settlementTime;
/**
* 结算金额
*/

View File

@@ -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,