KqTradeFlux.cs 1.4 KB

123456789101112131415161718192021222324252627282930313233343536
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.SpModels
  4. {
  5. public partial class KqTradeFlux
  6. {
  7. public string MerNo { get; set; }
  8. public string DeviceNetwork { get; set; }
  9. public string TerminalNo { get; set; }
  10. public string InputModel { get; set; }
  11. public string KqTradeSeq { get; set; }
  12. public string BillType { get; set; }
  13. public string SourceType { get; set; }
  14. public string BizEnterName { get; set; }
  15. public string BizEnterNo { get; set; }
  16. public string SmallDouble { get; set; }
  17. public decimal SettleFee { get; set; }
  18. public string SettleMethod { get; set; }
  19. public decimal FeeAmount { get; set; }
  20. public string BankCardNo { get; set; }
  21. public DateTime? UpdateTime { get; set; }
  22. public DateTime? CreateTime { get; set; }
  23. public string Remark { get; set; }
  24. public decimal DigAmt { get; set; }
  25. public string DigAmtFlag { get; set; }
  26. public string TradeSnNo { get; set; }
  27. public string BankCardType { get; set; }
  28. public string TradeTime { get; set; }
  29. public string TradeDate { get; set; }
  30. public string TradeStatus { get; set; }
  31. public string ProductType { get; set; }
  32. public decimal TradeAmount { get; set; }
  33. public string MerName { get; set; }
  34. }
  35. }