PayNotifyView.cs 773 B

123456789101112131415161718192021222324252627
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace EMIS.ViewModel
  6. {
  7. public class PayNotifyView
  8. {
  9. public string NotifyID { get; set; }
  10. public string OrderID { get; set; }
  11. public string WechatOrderID { get; set; }
  12. public string TotalFee { get; set; }
  13. public string Discount { get; set; }
  14. public string ResultCode { get; set; }
  15. public string TradeState { get; set; }
  16. }
  17. public class RefundNodifyView
  18. {
  19. public string WechatOrderID { get; set; }
  20. public string OrderID { get; set; }
  21. public string WechatRefundOrderID { get; set; }
  22. public string RefundOrderID { get; set; }
  23. public decimal Fee { get; set; }
  24. }
  25. }