123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- namespace FCS.Models
- {
-
-
-
- public class FCSConfig
- {
-
-
-
- public string Name { get; set; }
-
-
-
- public string Area { get; set; }
-
-
-
- public string LotteryName { get; set; }
-
-
-
- public string MainUrl { get; set; }
-
-
-
- public string BackUrl { get; set; }
-
-
-
- public string KJTime { get; set; }
-
-
-
- public int StartHour { get; set; }
-
-
-
- public int StartMinute { get; set; }
-
-
-
- public int Interval { get; set; }
-
-
-
- public int TimesPerDay { get; set; }
-
-
-
- public string KJRate { get; set; }
-
-
-
- public string JobName { get; set; }
-
-
-
- public string JobGroup { get; set; }
-
-
-
- public string JobIdentityName { get; set; }
-
-
-
- public string TriggerIdentityName { get; set; }
-
-
-
- public string CronExpression { get; set; }
-
-
-
- public int MainUrlPages { get; set; }
-
-
-
- public int BackUrlPages { get; set; }
-
-
-
- public string SkipDate { get; set; }
- }
- }
|