TradeRecord.cs 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.SpModels
  4. {
  5. public partial class TradeRecord
  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 ChannelSerial { get; set; }
  17. public string AgentNo { get; set; }
  18. public string ProductType { get; set; }
  19. public string Remark { get; set; }
  20. public string SettleMethod { get; set; }
  21. public decimal SettleFee { get; set; }
  22. public string BankCardNo { get; set; }
  23. public string ReceiptType { get; set; }
  24. public string IsStoreCashier { get; set; }
  25. public decimal DigAmt { get; set; }
  26. public string DigAmtFlag { get; set; }
  27. public string MerMobile { get; set; }
  28. public string DeviceType { get; set; }
  29. public string TradeSnNo { get; set; }
  30. public string BankCardType { get; set; }
  31. public string SerEntryMode { get; set; }
  32. public string TradeType { get; set; }
  33. public string TradeTime { get; set; }
  34. public string TradeDate { get; set; }
  35. public string ErrorMsg { get; set; }
  36. public string ErrorCode { get; set; }
  37. public string TradeStatus { get; set; }
  38. public string DiscountRateFlag { get; set; }
  39. public string BankAuthCode { get; set; }
  40. public string TradeReferNo { get; set; }
  41. public decimal TradeAmount { get; set; }
  42. public string MerName { get; set; }
  43. public string MerNo { get; set; }
  44. public string TradeSerialNo { get; set; }
  45. public string Field5 { get; set; }
  46. public string Field4 { get; set; }
  47. public string Field3 { get; set; }
  48. public string Field2 { get; set; }
  49. public string Field1 { get; set; }
  50. }
  51. }