SimulationInfo.cs 633 B

123456789101112131415161718192021222324
  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.Dto.Model
  10. {
  11. /// <summary>
  12. /// 仿真航迹数据信息
  13. /// </summary>
  14. [Table("SimulationInfo")]
  15. public class SimulationInfo : BaseModel<long>
  16. {
  17. [Display(Name = "仿真经度")]
  18. public double SimulationLon { get; set; }
  19. [Display(Name = "仿真纬度")]
  20. public double SimulationAlt { get; set; }
  21. }
  22. }