RefInfo.cs 630 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. [Table("RefInfo")]
  12. public class RefInfo : BaseModel<long>
  13. {
  14. [Display(Name = "参考站名称")]
  15. public string RefName { get; set; }
  16. [Display(Name = "参考站经度")]
  17. public double RefLon { get; set; }
  18. [Display(Name = "参考站纬度")]
  19. public double RefAlt { get; set; }
  20. }
  21. }