KqTradeCallBack.cs 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.SpModels
  4. {
  5. public partial class KqTradeCallBack
  6. {
  7. public string MerNo { get; set; }
  8. public DateTime? UpdateTime { get; set; }
  9. public DateTime? CreateTime { get; set; }
  10. public string Remark { get; set; }
  11. public string ReceiptType { get; set; }
  12. public string IsStoreCashier { get; set; }
  13. public decimal DigAmt { get; set; }
  14. public string DigAmtFlag { get; set; }
  15. public string MerMobile { get; set; }
  16. public string DeviceType { get; set; }
  17. public string TradeSnNo { get; set; }
  18. public string BankCardType { get; set; }
  19. public string SerEntryMode { get; set; }
  20. public string TradeType { get; set; }
  21. public string TradeTime { get; set; }
  22. public string TradeDate { get; set; }
  23. public string ErrorMsg { get; set; }
  24. public string ErrorCode { get; set; }
  25. public string TradeStatus { get; set; }
  26. public string ProductType { get; set; }
  27. public string DiscountRateFlag { get; set; }
  28. public string BankAuthCode { get; set; }
  29. public string TradeReferNo { get; set; }
  30. public decimal TradeAmount { get; set; }
  31. public string MerName { get; set; }
  32. }
  33. }