ChannelSet.cs 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.CashModels
  4. {
  5. public partial class ChannelSet
  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 int Version { get; set; }
  12. public DateTime? CreateDate { get; set; }
  13. public DateTime? UpdateDate { get; set; }
  14. public string CreateMan { get; set; }
  15. public string UpdateMan { get; set; }
  16. public string SeoTitle { get; set; }
  17. public string SeoKeyword { get; set; }
  18. public string SeoDescription { get; set; }
  19. public string Remark { get; set; }
  20. public int PaymentFlowType { get; set; }
  21. public int SettleType { get; set; }
  22. public string TradeEndTime { get; set; }
  23. public string TradeStartTime { get; set; }
  24. public decimal MerchantCapFee { get; set; }
  25. public decimal MerchantCapMoney { get; set; }
  26. public decimal MerchantFee { get; set; }
  27. public decimal MerchantRate { get; set; }
  28. public decimal ChannelCapFee { get; set; }
  29. public decimal ChannelCapMoney { get; set; }
  30. public decimal ChannelFee { get; set; }
  31. public decimal ChannelRate { get; set; }
  32. public decimal DayLimitMoney { get; set; }
  33. public decimal SingleCardDayLimit { get; set; }
  34. public decimal MaxTradeMoney { get; set; }
  35. public decimal MinTradeMoney { get; set; }
  36. public int ChannelType { get; set; }
  37. public int ChannelStatus { get; set; }
  38. public string MerchantIp { get; set; }
  39. public string PrivateKey { get; set; }
  40. public string PublicKey { get; set; }
  41. public string PrivatePemKey { get; set; }
  42. public string PublicPemKey { get; set; }
  43. public string ReturnUrl { get; set; }
  44. public string NotifyUrl { get; set; }
  45. public string QueryUrl { get; set; }
  46. public string PayUrl { get; set; }
  47. public string ChannelMerchantNo { get; set; }
  48. public string ChannelName { get; set; }
  49. public string ChannelCode { get; set; }
  50. }
  51. }