CxTxInfo.cs 716 B

123456789101112131415161718192021222324252627282930
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.ComponentModel.DataAnnotations.Schema;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace DW5S.Entity
  9. {
  10. [Table("CxTxInfo")]
  11. public class CxTxInfo : BaseEntity
  12. {
  13. [Display(Name = "测向站名称")]
  14. public string Name { get; set; }
  15. [Display(Name = "经度°")]
  16. public double Lon { get; set; }
  17. [Display(Name = "纬度°")]
  18. public double Lat { get; set; }
  19. [Display(Name = "高度")]
  20. public double Alt { get; set; }
  21. [Display(Name = "备注")]
  22. public string Remark { get; set; }
  23. }
  24. }