KqTrade.cs 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.SpModels
  4. {
  5. public partial class KqTrade
  6. {
  7. public string MerNo { get; set; }
  8. public string InputModel { get; set; }
  9. public string KqTradeSeq { get; set; }
  10. public string DigStatus { get; set; }
  11. public string S0settleStatus { get; set; }
  12. public decimal TotalRebateAmt { get; set; }
  13. public decimal TotalCostAmt { get; set; }
  14. public decimal SettleRebateAmt { get; set; }
  15. public decimal SettleCostAmt { get; set; }
  16. public decimal SettleFeeRebateAmt { get; set; }
  17. public decimal SettleFeeCostAmt { get; set; }
  18. public string BillType { get; set; }
  19. public decimal SettleTotalFee { get; set; }
  20. public string SourceType { get; set; }
  21. public string BizEnterName { get; set; }
  22. public string BizEnterNo { get; set; }
  23. public string SmallDouble { get; set; }
  24. public decimal SettleFee { get; set; }
  25. public string SettleMethod { get; set; }
  26. public decimal FeeAmount { get; set; }
  27. public string BankCardNo { get; set; }
  28. public DateTime? UpdateTime { get; set; }
  29. public DateTime? CreateTime { get; set; }
  30. public string Remark { 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 string ProductType { get; set; }
  39. public decimal TradeAmount { get; set; }
  40. public string MerName { get; set; }
  41. }
  42. }