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
{
///
/// 仿真航迹信息
///
[Table("SimulationInfo")]
public class SimulationInfo : BaseModel
{
[Display(Name = "仿真名称")]
public double SimulationName { get; set; }
[Display(Name = "仿真速度(Km/s)")]
public double SimulationSpeed { get; set; }
[Display(Name = "仿真数据编号", AutoGenerateField = false)]
public long SimulationPId { get; set; }
}
}