1234567891011121314151617181920212223242526272829303132333435 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace JobService.Entity
- {
- public class JobConfig
- {
-
-
-
- public string Name { 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; }
- }
- }
|