123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- namespace Central.Control.WebApi.Models.Request
- {
-
-
-
- public class AliPayNotifyRequestDto
- {
-
-
-
- public DateTime Notify_Time { set; get; }
-
-
-
- public string Notify_Type { set; get; }
-
-
-
- public string Notify_Id { set; get; }
-
-
-
-
-
- public string Sign_Type { set; get; }
-
-
-
- public string Sign { set; get; }
-
-
-
- public string Trade_No { set; get; }
-
-
-
- public string App_Id { set; get; }
-
-
-
- public string Out_Trade_No { set; get; }
-
-
-
- public string Out_Biz_No { set; get; }
-
-
-
- public string Buyer_Id { set; get; }
-
-
-
- public string Buyer_Logon_Id { set; get; }
-
-
-
- public string Seller_Id { set; get; }
-
-
-
- public string Seller_Email { set; get; }
-
-
-
- public string Trade_Status { set; get; }
-
-
-
- public decimal Total_Amount { set; get; }
-
-
-
- public decimal Receipt_Amount { set; get; }
-
-
-
- public decimal Invoice_Amount { set; get; }
-
-
-
- public decimal Buyer_Pay_Amount { set; get; }
-
-
-
- public decimal Point_Amount { set; get; }
-
-
-
- public decimal Refund_Fee { set; get; }
-
-
-
- public decimal Send_Back_Fee { set; get; }
-
-
-
- public string Subject { set; get; }
-
-
-
- public string Body { set; get; }
-
-
-
- public DateTime Gmt_Create { set; get; }
-
-
-
- public DateTime Gmt_Payment { set; get; }
-
-
-
- public DateTime Gmt_Refund { set; get; }
-
-
-
- public DateTime Gmt_Close { set; get; }
-
-
-
- public List<AliFundBillDto> Fund_Bill_List { set; get; }
-
-
-
- public List<AliVoucherDetailDto> voucher_detail_list { set; get; }
- }
-
-
-
- public class AliFundBillDto
- {
-
-
-
- public string Amount { set; get; }
-
-
-
- public string FundChannel { set; get; }
- }
-
-
-
- public class AliVoucherDetailDto
- {
-
-
-
- public string Amount { set; get; }
-
-
-
- public string merchantContribute { set; get; }
-
-
-
- public string Name { set; get; }
-
-
-
- public string OtherContribute { set; get; }
-
-
-
- public string Type { set; get; }
-
-
-
- public string Memo { set; get; }
- }
- }
|