12345678910111213141516171819202122232425262728 |
- 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.Repostory.Model
- {
- /// <summary>
- /// 仿真航迹数据信息
- /// </summary>
- [Table("SimulationPonit")]
- public class SimulationPonit : BaseModel<long>
- {
- [Display(Name = "仿真数据编号", AutoGenerateField = false)]
- public long SimulationId { get; set; }
- [Display(Name = "仿真经度")]
- public double SimulationLon { get; set; }
- [Display(Name = "仿真纬度")]
- public double SimulationLat { get; set; }
- }
- }
|