|
@@ -10,15 +10,18 @@ using System.Threading.Tasks;
|
|
|
namespace DataSimulation.Repostory.Model
|
|
|
{
|
|
|
/// <summary>
|
|
|
- /// 仿真航迹数据信息
|
|
|
+ /// 仿真航迹信息
|
|
|
/// </summary>
|
|
|
[Table("SimulationInfo")]
|
|
|
public class SimulationInfo : BaseModel<long>
|
|
|
{
|
|
|
- [Display(Name = "仿真经度")]
|
|
|
- public double SimulationLon { get; set; }
|
|
|
+ [Display(Name = "仿真名称")]
|
|
|
+ public double SimulationName { get; set; }
|
|
|
|
|
|
- [Display(Name = "仿真纬度")]
|
|
|
- public double SimulationLat { get; set; }
|
|
|
+ [Display(Name = "仿真速度(Km/s)")]
|
|
|
+ public double SimulationSpeed { get; set; }
|
|
|
+
|
|
|
+ [Display(Name = "仿真数据编号", AutoGenerateField = false)]
|
|
|
+ public double SimulationPId { get; set; }
|
|
|
}
|
|
|
}
|