1234567891011121314151617181920212223242526272829 |
- 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
- }
- /// <summary>
- /// 仿真类型
- /// </summary>
- public enum EnumSimulationType
- {
- [Display(Name = "三星双时差")]
- X3TwoDto
- }
- }
|