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.Repostory.Model
- {
- /// <summary>
- /// 仿真航迹信息
- /// </summary>
- [Table("SimulationInfo")]
- public class SimulationInfo : BaseModel<long>
- {
- [Display(Name = "仿真名称")]
- public string SimulationName { get; set; }
- [Display(Name = "仿真速度(m/s)")]
- public double SimulationSpeed { get; set; }
- }
- }
|