using System;
using System.Collections.Generic;
using SqlSugar;
using WMS.BZModels;
namespace wms.sqlsugar.model.cp
{
[Tenant("cp")]
[SugarTable("sys_job")]
public class SysJob : BaseModel
{
///
/// code
///
[SugarColumn(ColumnDataType ="varchar" , Length = 200 , IsNullable = false )]
public string code { get; set; }
///
/// name
///
[SugarColumn(ColumnDataType ="varchar" , Length = 200 , IsNullable = false )]
public string name { get; set; }
///
/// cron_expression
///
[SugarColumn(ColumnDataType ="varchar" , Length = 100 , IsNullable = false )]
public string cron_expression { get; set; }
///
/// trigger_description
///
[SugarColumn(ColumnDataType ="varchar" , Length = 100 , IsNullable = true )]
public string trigger_description { get; set; }
///
/// job_description
///
[SugarColumn(ColumnDataType ="varchar" , Length = 100 , IsNullable = true )]
public string job_description { get; set; }
///
/// job_group_name
///
[SugarColumn(ColumnDataType ="varchar" , Length = 200 , IsNullable = true )]
public string job_group_name { get; set; }
///
/// job_type
///
[SugarColumn(ColumnDataType ="varchar" , Length = 100 , IsNullable = true )]
public string job_type { get; set; }
///
/// trigger_name
///
[SugarColumn(ColumnDataType ="varchar" , Length = 100 , IsNullable = true )]
public string trigger_name { get; set; }
///
/// trigger_group_name
///
[SugarColumn(ColumnDataType ="varchar" , Length = 100 , IsNullable = true )]
public string trigger_group_name { get; set; }
}
}