using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DataSimulation.Repostory.Model { public enum EnumTaskState { [Display(Name = "未执行")] Stopped, [Display(Name = "执行中")] Running } /// /// 仿真类型 /// public enum EnumSimulationType { [Display(Name = "三星双时差")] X3TwoDto } }