TradeFluxRecord.cs 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.SpModels
  4. {
  5. public partial class TradeFluxRecord
  6. {
  7. public int Id { get; set; }
  8. public int Sort { get; set; }
  9. public int QueryCount { get; set; }
  10. public int Status { get; set; }
  11. public DateTime? CreateDate { get; set; }
  12. public DateTime? UpdateDate { get; set; }
  13. public string SeoTitle { get; set; }
  14. public string SeoKeyword { get; set; }
  15. public string SeoDescription { get; set; }
  16. public string AgentNo { get; set; }
  17. public string ProductType { get; set; }
  18. public string DeviceNetwork { get; set; }
  19. public string TerminalNo { get; set; }
  20. public string InputModel { get; set; }
  21. public string KqTradeSeq { get; set; }
  22. public string BillType { get; set; }
  23. public string SourceType { get; set; }
  24. public string BizEnterName { get; set; }
  25. public string BizEnterNo { get; set; }
  26. public string SmallDouble { get; set; }
  27. public decimal SettleFee { get; set; }
  28. public string SettleMethod { get; set; }
  29. public decimal FeeAmount { get; set; }
  30. public string BankCardNo { get; set; }
  31. public decimal DigAmt { get; set; }
  32. public string DigAmtFlag { get; set; }
  33. public string TradeSnNo { get; set; }
  34. public string BankCardType { get; set; }
  35. public string TradeTime { get; set; }
  36. public string TradeDate { get; set; }
  37. public string TradeStatus { get; set; }
  38. public decimal TradeAmount { get; set; }
  39. public string MerName { get; set; }
  40. public string TradeSerialNo { get; set; }
  41. public string MerNo { get; set; }
  42. }
  43. }