ExaminationRegistrationPayView.cs 606 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace EMIS.ViewModel.ExaminationApply
  6. {
  7. public class ExaminationRegistrationPayView
  8. {
  9. public System.Guid? WechatPayListID { get; set; }
  10. public Guid ExaminationRegistrationID { get; set; }
  11. public decimal? Fee { get; set; }
  12. public string OrderID { get; set; }
  13. public string WechatOrderID { get; set; }
  14. public string RefundOrderID { get; set; }
  15. public Nullable<decimal> RefundTotal { get; set; }
  16. public int? RecordStatus { get; set; }
  17. }
  18. }