1。携程打车数据设值修改
This commit is contained in:
parent
9c69d97c5b
commit
7e05b81046
|
@ -128,6 +128,7 @@ public class CTripOrderExtensionFactoryImpl implements OrderExtensionFactory {
|
|||
carOrderDetail.setCompanyPaymentAmount(String.valueOf(carBasicInfo.getPersonAmount()));
|
||||
|
||||
carOrderDetail.setPersonalPaymentAmount(String.valueOf(carBasicInfo.getAccntAmount()));
|
||||
|
||||
if (!carQuickOrderInfoEntity.getOrderFeeList().isEmpty()) {
|
||||
OrderFee orderFee = carQuickOrderInfoEntity.getOrderFeeList().get(0);
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@ public class CarQuickOrderInfoEntity {
|
|||
private OrderInsurance OrderInsurance; // 订单保险信息
|
||||
private OrderInvoice OrderInvoice; // 订单发票信息
|
||||
private CarPassengerInfo PassengerInfo; // 乘客信息
|
||||
// private List<PaymentInfo> PaymentInfoList; // 支付信息列表
|
||||
private List<PaymentInfo> PaymentInfoList; // 支付信息列表
|
||||
// private List<PaymentSettlement> PaymentSettlementList; // 支付结算列表
|
||||
private List<ChoosedVehicle> ChoosedVehicleList; // 选择的车辆列表
|
||||
// private OrderConfigInfo OrderConfigInfo; // 订单配置信息
|
||||
|
|
|
@ -5,9 +5,12 @@ import lombok.Data;
|
|||
// 支付信息类
|
||||
@Data
|
||||
public class PaymentInfo {
|
||||
private String amount; // 金额
|
||||
private String billNo; // 账单号
|
||||
private String paidTime; // 支付时间
|
||||
private String paymentCategory; // 支付类别
|
||||
private Double Amount; // 金额
|
||||
private String BillNo; // 账单号
|
||||
private String PaidTime; // 支付时间
|
||||
private String PaymentCategory; // 支付类别
|
||||
private String PaymentId; // 账单号
|
||||
private String PaymentRemark; // 支付时间
|
||||
private String PaymentType; // 支付类别
|
||||
// Other fields and getters/setters
|
||||
}
|
Loading…
Reference in New Issue