12345678910111213141516171819202122232425262728293031323334353637383940 |
- using System;
- using System.Collections.Generic;
- namespace MySystem.CashModels
- {
- public partial class WithdrawConfig
- {
- public int Id { get; set; }
- public int Sort { get; set; }
- public int QueryCount { get; set; }
- public int Status { get; set; }
- public int Version { get; set; }
- public DateTime? CreateDate { get; set; }
- public DateTime? UpdateDate { get; set; }
- public string CreateMan { get; set; }
- public string UpdateMan { get; set; }
- public string SeoTitle { get; set; }
- public string SeoKeyword { get; set; }
- public string SeoDescription { get; set; }
- public string Remark { get; set; }
- public int RuleCheckSwitch { get; set; }
- public string TaskExecutionTime { get; set; }
- public int CurCashErrors { get; set; }
- public int AlarmCashErrors { get; set; }
- public string AlarmMobile { get; set; }
- public int OutMonthTimesLimit { get; set; }
- public int OutDayTimesLimit { get; set; }
- public decimal OutMonthAmountLimit { get; set; }
- public decimal OutDayAmountLimit { get; set; }
- public int UserOutMonthTimesLimit { get; set; }
- public int UserOutDayTimesLimit { get; set; }
- public decimal UserOutMonthAmountLimit { get; set; }
- public decimal UserOutDayAmountLimit { get; set; }
- public decimal UserOutAmountLimit { get; set; }
- public decimal UserOutAmountMinLimit { get; set; }
- public string AuditOutSwitchValue { get; set; }
- public int AuditOutSwitchType { get; set; }
- public string AutoAuditOutSwitch { get; set; }
- }
- }
|