41 lines
1.1 KiB
C#
41 lines
1.1 KiB
C#
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; }
|
|
|
|
/// <summary>
|
|
///模式Id
|
|
/// </summary>
|
|
[Display(Name = "模式Id")]
|
|
[Comment("模式Id")]
|
|
[Column(TypeName = "int")]
|
|
public int ModeId { get; set; }
|
|
|
|
/// <summary>
|
|
///模块Id
|
|
/// </summary>
|
|
[Display(Name = "模块Id")]
|
|
[Comment("模块Id")]
|
|
[Column(TypeName = "int")]
|
|
public int TrainingModuleId { get; set; }
|
|
}
|
|
}
|