123456789101112131415161718192021222324252627 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace EMIS.ViewModel
- {
- public class PayNotifyView
- {
- public string NotifyID { get; set; }
- public string OrderID { get; set; }
- public string WechatOrderID { get; set; }
- public string TotalFee { get; set; }
- public string Discount { get; set; }
- public string ResultCode { get; set; }
- public string TradeState { get; set; }
- }
- public class RefundNodifyView
- {
- public string WechatOrderID { get; set; }
- public string OrderID { get; set; }
- public string WechatRefundOrderID { get; set; }
- public string RefundOrderID { get; set; }
- public decimal Fee { get; set; }
- }
- }
|