TaskSimulation.cs 689 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.ComponentModel.DataAnnotations.Schema;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace DataSimulation.Repostory.Model
  9. {
  10. /// <summary>
  11. /// 任务航迹关联表
  12. /// </summary>
  13. [Table("TaskSimulation")] // 标识数据库创建的表名
  14. public class TaskSimulation : BaseModel<long>
  15. {
  16. [Display(Name = "任务编号", AutoGenerateField = false)]
  17. public long TaskId { get; set; }
  18. [Display(Name = "仿真信息编号", AutoGenerateField = false)]
  19. public long SimulationId { get; set; }
  20. }
  21. }