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