SimulationInfo.cs 765 B

123456789101112131415161718192021222324252627
  1. using DataSimulation.Repostory;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel.DataAnnotations;
  5. using System.ComponentModel.DataAnnotations.Schema;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. namespace DataSimulation.Repostory.Model
  10. {
  11. /// <summary>
  12. /// 仿真航迹信息
  13. /// </summary>
  14. [Table("SimulationInfo")]
  15. public class SimulationInfo : BaseModel<long>
  16. {
  17. [Display(Name = "仿真名称")]
  18. public double SimulationName { get; set; }
  19. [Display(Name = "仿真速度(Km/s)")]
  20. public double SimulationSpeed { get; set; }
  21. [Display(Name = "仿真数据编号", AutoGenerateField = false)]
  22. public long SimulationPId { get; set; }
  23. }
  24. }