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("TaskSimulation")] // 标识数据库创建的表名 public class TaskSimulation : BaseModel { [Display(Name = "任务编号", AutoGenerateField = false)] public long TaskId { get; set; } [Display(Name = "仿真信息编号", AutoGenerateField = false)] public long SimulationId { get; set; } } }