58 lines
1.5 KiB
C#
58 lines
1.5 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_ClassroomSetting")]
|
|||
|
[Entity(TableCnName = "Ai课堂设置表", TableName = "Ai_ClassroomSetting")]
|
|||
|
public class Ai_ClassroomSetting : 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 ClassRoomRecordId { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 阶段Id
|
|||
|
/// </summary>
|
|||
|
[Display(Name = "阶段Id")]
|
|||
|
[Comment("阶段Id")]
|
|||
|
[Column(TypeName = "int")]
|
|||
|
public int ClassroomStageId { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 时长
|
|||
|
/// </summary>
|
|||
|
[Display(Name = "时长")]
|
|||
|
[Comment("时长")]
|
|||
|
[Column(TypeName = "int")]
|
|||
|
public int Duration { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 密度
|
|||
|
/// </summary>
|
|||
|
[Display(Name = "密度")]
|
|||
|
[Comment("密度")]
|
|||
|
[Column(TypeName = "int")]
|
|||
|
public int Density { get; set; }
|
|||
|
|
|||
|
}
|
|||
|
}
|