AntInfo.cs 680 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.Dto.Model
  10. {
  11. /// <summary>
  12. /// 天线信息
  13. /// </summary>
  14. [Table("AntInfo")]
  15. public class AntInfo : BaseModel<long>
  16. {
  17. [Display(Name = "天线名称")]
  18. public string AntName { get; set; }
  19. [Display(Name = "天线经度")]
  20. public double AntLon { get; set; }
  21. [Display(Name = "天线纬度")]
  22. public double AntLAlt { get; set; }
  23. }
  24. }