diff --git a/dto/response/pay_info_response.go b/dto/response/pay_info_response.go index dfe1c71..4fc61a3 100644 --- a/dto/response/pay_info_response.go +++ b/dto/response/pay_info_response.go @@ -1,6 +1,7 @@ package response type PayInfoResponse struct { + TpID string OrderSn string OrderCreateTime string PayAmount string diff --git a/insure b/insure index eae4f2f..c879571 100755 Binary files a/insure and b/insure differ diff --git a/service/order_service.go b/service/order_service.go index 29c3e2e..792a1f7 100644 --- a/service/order_service.go +++ b/service/order_service.go @@ -817,6 +817,7 @@ func (s *orderService) GetPayInfo(token string) (*response.PayInfoResponse, erro return nil, e.NewError("订单状态异常") } payInfo := response.PayInfoResponse{ + TpID: order.Project.TpID, PayAmount: order.Project.InsureAmount, OrderSn: order.OrderSn, OrderCreateTime: order.CreatedAt.Format("2006-01-02 15:04:05"),