12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- using Newtonsoft.Json;
- using OASystem.Domain.Enums;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.ViewModels.Groups
- {
- public class Grp_ScheduleView
- {
-
-
-
- public int Id { get; set; }
-
-
-
- public int DiId { get; set; }
-
-
-
- public string DeleName { get; set; }
-
-
-
- public GrpSchedulePrimaryStepEnum PrimaryStep { get; set; }
-
-
-
- public string PrimaryStep_Text
- {
- get
- {
- return EnumHelper.GetEnumDescription(PrimaryStep);
- }
- }
-
-
-
- public DateTime ExpectBeginDt { get; set; }
-
-
-
- public DateTime ExpectEndDt { get; set; }
-
-
-
- public int Leader { get; set; }
-
-
-
- public string LeaderName { get; set; }
-
-
-
- public int Exception { get; set; }
- }
- }
|