12345678910111213141516171819202122232425262728293031323334353637 |
- using SqlSugar;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace wms.sqlsugar.model.hj
- {
- [Tenant("hj")]
- [SugarTable("Sys_Job", "定时任务表")]
- public class SysJob : BaseModel
- {
- [SugarColumn(ColumnName = "code", Length = 200)]
- public string Code { get; set; }
- [SugarColumn(ColumnName = "name", Length = 200)]
- public string Name { get; set; }
- [SugarColumn(ColumnName = "cron_expression", Length = 100)]
- public string CronExpression { get; set; }
- [SugarColumn(ColumnName = "trigger_description", Length = 100, IsNullable = true)]
- public string TriggerDescription { get; set; }
- [SugarColumn(ColumnName = "job_description", Length = 100, IsNullable = true)]
- public string JobDescription { get; set; }
- [SugarColumn(ColumnName = "job_group_name", Length = 200, IsNullable = true)]
- public string JobGroupName { get; set; }
- [SugarColumn(ColumnName = "job_type", Length = 100, IsNullable = true)]
- public string JobType { get; set; }
- [SugarColumn(ColumnName = "trigger_name", Length = 100, IsNullable = true)]
- public string TriggerName { get; set; }
- [SugarColumn(ColumnName = "trigger_group_name", Length = 100, IsNullable = true)]
- public string TriggerGroupName { get; set; }
- /// <summary>
- /// IsStop
- /// </summary>
- [SugarColumn(ColumnDataType = "int", IsNullable = false)]
- public int IsStop { get; set; }
- }
- }
|