WithdrawConfig.cs 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.CashModels
  4. {
  5. public partial class WithdrawConfig
  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 RuleCheckSwitch { get; set; }
  21. public string TaskExecutionTime { get; set; }
  22. public int CurCashErrors { get; set; }
  23. public int AlarmCashErrors { get; set; }
  24. public string AlarmMobile { get; set; }
  25. public int OutMonthTimesLimit { get; set; }
  26. public int OutDayTimesLimit { get; set; }
  27. public decimal OutMonthAmountLimit { get; set; }
  28. public decimal OutDayAmountLimit { get; set; }
  29. public int UserOutMonthTimesLimit { get; set; }
  30. public int UserOutDayTimesLimit { get; set; }
  31. public decimal UserOutMonthAmountLimit { get; set; }
  32. public decimal UserOutDayAmountLimit { get; set; }
  33. public decimal UserOutAmountLimit { get; set; }
  34. public decimal UserOutAmountMinLimit { get; set; }
  35. public string AuditOutSwitchValue { get; set; }
  36. public int AuditOutSwitchType { get; set; }
  37. public string AutoAuditOutSwitch { get; set; }
  38. }
  39. }