ComplianceServer/code/Hg.Core.Entity/Dncmsbase/ZhiboSystemPlan.cs

60 lines
1.5 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Hg.Core.Entity.Dncmsbase
{
[Table("zhibosystemplan")]
public class ZhiboSystemPlan
{
[Key]
public int Id { get; set; }
public string? Dept { get; set; }
public string? Title { get; set; }
public string? Lecturer { get; set; }
public DateTime? Zbdate { get; set; }
public DateTime? Zbtime { get; set; }
public int? Duration { get; set; }
public string? Content { get; set; }
public string? Files { get; set; }
public int? Scenetype { get; set; }
public string? Scene { get; set; }
[Column("beforestatus")]
public int? BeforeStatus { get; set; }
[Column("duringstatus")]
public int? DuringStatus { get; set; }
[Column("afterstatus")]
public int? AfterStatus { get; set; }
public DateTime? Ctime { get; set; }
public DateTime? Utime { get; set; }
public string? Vscode { get; set; }
public int? Usetype { get; set; }
public int? operatorid { get; set; }
public int? OperatorDeptid { get; set; }
public int? sceneid { get; set; }
public string? DeptName { get; set; }
public string? LiveLink { get; set; }
public List<ComplianceCheckStatus>? ComplianceCheckStatus { get; set; }
public int ? status { get; set; }
}
}