SimulationPonit.cs 764 B

12345678910111213141516171819202122232425262728
  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("SimulationPonit")]
  15. public class SimulationPonit : BaseModel<long>
  16. {
  17. [Display(Name = "仿真数据编号", AutoGenerateField = false)]
  18. public long SimulationId { get; set; }
  19. [Display(Name = "仿真经度")]
  20. public double SimulationLon { get; set; }
  21. [Display(Name = "仿真纬度")]
  22. public double SimulationLat { get; set; }
  23. }
  24. }