using Microsoft.EntityFrameworkCore; 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; using VOL.Entity.Enum; using VOL.Entity.SystemModels; namespace VOL.Entity.DomainModels { [Table("Ai_ModeAssocModule")] [Entity(TableCnName = "Ai模式与模块关联表", TableName = "Ai_ModeAssocModule")] public class Ai_ModeAssocModule : BaseEntity { [Key] [DatabaseGenerated(DatabaseGeneratedOption.Identity)] [Display(Description = "主键Id")] [Comment("Id")] public int Id { get; set; } /// ///模式Id /// [Display(Name = "模式Id")] [Comment("模式Id")] [Column(TypeName = "int")] public int ModeId { get; set; } /// ///模块Id /// [Display(Name = "模块Id")] [Comment("模块Id")] [Column(TypeName = "int")] public int TrainingModuleId { get; set; } } }