klhcSysJob.cs 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. using SqlSugar;
  2. namespace WMS.BZModels.Models.KLHC
  3. {
  4. [Tenant("klhc")]
  5. [SugarTable("sys_job", "定时任务表")]
  6. public class klhcSysJob : BaseModel
  7. {
  8. [SugarColumn(ColumnName = "code", Length = 200)]
  9. public string Code { get; set; }
  10. [SugarColumn(ColumnName = "name", Length = 200)]
  11. public string Name { get; set; }
  12. [SugarColumn(ColumnName = "cron_expression", Length = 100)]
  13. public string CronExpression { get; set; }
  14. [SugarColumn(ColumnName = "trigger_description", Length = 100, IsNullable = true)]
  15. public string TriggerDescription { get; set; }
  16. [SugarColumn(ColumnName = "job_description", Length = 100, IsNullable = true)]
  17. public string JobDescription { get; set; }
  18. [SugarColumn(ColumnName = "job_group_name", Length = 200, IsNullable = true)]
  19. public string JobGroupName { get; set; }
  20. [SugarColumn(ColumnName = "job_type", Length = 100, IsNullable = true)]
  21. public string JobType { get; set; }
  22. [SugarColumn(ColumnName = "trigger_name", Length = 100, IsNullable = true)]
  23. public string TriggerName { get; set; }
  24. [SugarColumn(ColumnName = "trigger_group_name", Length = 100, IsNullable = true)]
  25. public string TriggerGroupName { get; set; }
  26. [SugarColumn(ColumnDataType = "int", IsNullable = false)]
  27. public int IsStop { get; set; }
  28. }
  29. }