123456789101112131415161718192021222324252627282930 |
- using DW5S.ViewModel;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.ComponentModel.DataAnnotations.Schema;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace DW5S.ViewModel
- {
- public class CxTxViewModel : BaseViewModel<int>
- {
- [Display(Name = "测向站名称")]
- public string Name { get; set; }
- [Display(Name = "经度°")]
- public double Lon { get; set; }
- [Display(Name = "纬度°")]
- public double Lat { get; set; }
- [Display(Name = "备注")]
- public string Remark { get; set; }
- [Display(Name = "状态")]
- public bool Enable { get; set; }
- }
- }
|