CxTxViewModel.cs 732 B

123456789101112131415161718192021222324252627282930
  1. using DW5S.ViewModel;
  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 DW5S.ViewModel
  10. {
  11. public class CxTxViewModel : BaseViewModel<int>
  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 string Remark { get; set; }
  21. [Display(Name = "状态")]
  22. public bool Enable { get; set; }
  23. }
  24. }