123456789101112131415161718192021222324252627 |
- using DataSimulation.Repostory;
- 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 DataSimulation.Dto.Model
- {
- /// <summary>
- /// 天线信息
- /// </summary>
- [Table("AntInfo")]
- public class AntInfo : BaseModel<long>
- {
- [Display(Name = "天线名称")]
- public string AntName { get; set; }
- [Display(Name = "天线经度")]
- public double AntLon { get; set; }
- [Display(Name = "天线纬度")]
- public double AntLAlt { get; set; }
- }
- }
|