using SqlSugar;
using System;
namespace Application.Domain.Entity
{
[Tenant("Kg.SeaTime.Resource")]
public class game_job
{
///
/// jobId
///
[SugarColumn(Length = 50, IsNullable = true)]
public string? jobId { get; set; }
///
/// name
///
[SugarColumn(Length = 50, IsNullable = true)]
public string? name { get; set; }
///
/// code
///
[SugarColumn(Length = 255, IsNullable = true)]
public string? code { get; set; }
///
/// par
///
[SugarColumn(IsNullable = true)]
public string? par { get; set; }
///
/// opType
///
[SugarColumn(Length = 50, IsNullable = true)]
public string? opType { get; set; }
///
/// cron
///
[SugarColumn(Length = 50, IsNullable = true)]
public string? cron { get; set; }
///
/// state
///
[SugarColumn(IsNullable = true)]
public int? state { get; set; }
///
/// addTime
///
[SugarColumn(IsNullable = true)]
public DateTime? addTime { get; set; }
///
/// remark
///
[SugarColumn(Length = 255, IsNullable = true)]
public string? remark { get; set; }
}
}