using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OASystem.Domain.Dtos.Groups { public class Grp_ScheduleDetailUpdDto { public int Id { get; set; } public int Duty { get; set; } public int StepStatus { get; set; } public string JobContent { get; set; } public DateTime ExpectBeginDt { get; set; } public DateTime ExpectEndDt { get; set; } public string Remark { get; set; } } public class Grp_ScheduleDetailInsertDto { public int ScheduleId { get; set; } public int Step { get; set; } public int ParentStep { get; set; } public int Duty { get; set; } public string JobContent { get; set; } public DateTime ExpectBeginDt { get; set; } public DateTime ExpectEndDt { get; set; } public int CreateUserId { get; set; } public string Remark { get; set; } public int SLevel { get; set; } } }