123456789101112131415161718192021222324 |
- 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
- {
- [Table("RefInfo")]
- public class RefInfo : BaseModel<long>
- {
- [Display(Name = "参考站名称")]
- public string RefName { get; set; }
- [Display(Name = "参考站经度")]
- public double RefLon { get; set; }
- [Display(Name = "参考站纬度")]
- public double RefAlt { get; set; }
- }
- }
|