//------------------------------------------------------------------------------ // // This code was generated from a template. // // Manual changes to this file may cause unexpected behavior in your application. // Manual changes to this file will be overwritten if the code is regenerated. // //------------------------------------------------------------------------------ namespace EMIS.Entities { #pragma warning disable 1573 using System; using System.Collections.Generic; /// /// Sys_Scheduling /// public partial class Sys_Scheduling { public Sys_Scheduling() { this.Sys_ScheduleLog = new HashSet(); } /// /// scid /// public System.Guid scid { get; set; } /// /// jobid /// public string jobid { get; set; } /// /// datebegin /// public string datebegin { get; set; } /// /// dateend /// public string dateend { get; set; } /// /// timefrom /// public string timefrom { get; set; } /// /// timeto /// public string timeto { get; set; } /// /// looptype /// public string looptype { get; set; } /// /// loopnumb /// public int loopnumb { get; set; } /// /// scmode /// public string scmode { get; set; } /// /// scinterval /// public int scinterval { get; set; } /// /// notes /// public string notes { get; set; } /// /// status /// public string status { get; set; } /// /// lastrun /// public Nullable lastrun { get; set; } /// /// totalloopnumb /// public Nullable totalloopnumb { get; set; } /// /// RecordStatus /// public int RecordStatus { get; set; } /// /// CreateUserID /// public Nullable CreateUserID { get; set; } /// /// CreateTime /// public Nullable CreateTime { get; set; } /// /// ModifyUserID /// public Nullable ModifyUserID { get; set; } /// /// ModifyTime /// public Nullable ModifyTime { get; set; } /// /// Sys_ScheduleJob /// public virtual Sys_ScheduleJob Sys_ScheduleJob { get; set; } /// /// Sys_ScheduleLog /// public virtual HashSet Sys_ScheduleLog { get; set; } } }