110 lines
2.8 KiB
C#
110 lines
2.8 KiB
C#
|
|
using APT.BaseData.Domain.Entities.FM;
|
|||
|
|
using APT.BaseData.Domain.Enums;
|
|||
|
|
using APT.Infrastructure.Core;
|
|||
|
|
using APT.MS.Domain.Enums;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.ComponentModel;
|
|||
|
|
|
|||
|
|
namespace APT.MS.Domain.Entities.WB
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 外包题库
|
|||
|
|
/// </summary>
|
|||
|
|
[Description("外包题库")]
|
|||
|
|
public class T_WB_OUTSOURCE : MesEntityBase
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 课程名称
|
|||
|
|
/// </summary>
|
|||
|
|
[Description("课程名称")]
|
|||
|
|
[DataFieldLength(200)]
|
|||
|
|
[FormFieldTable]
|
|||
|
|
[FormFieldEdit]
|
|||
|
|
[FormFieldQuery]
|
|||
|
|
public string NAME { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 课程编号
|
|||
|
|
/// </summary>
|
|||
|
|
[Description("课程编号")]
|
|||
|
|
[DataFieldLength(50)]
|
|||
|
|
[FormFieldTable]
|
|||
|
|
[FormFieldEdit]
|
|||
|
|
[FormFieldQuery]
|
|||
|
|
public string CODE { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 课程类型
|
|||
|
|
/// </summary>
|
|||
|
|
[Description("课程类型")]
|
|||
|
|
[FormFieldTable]
|
|||
|
|
[FormFieldEdit]
|
|||
|
|
[FormFieldQuery]
|
|||
|
|
[DataFieldForeignKey("Nav_Type")]
|
|||
|
|
public Guid TYPE_ID { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 课程类型
|
|||
|
|
/// </summary>
|
|||
|
|
[Description("课程类型")]
|
|||
|
|
[FormFieldTable]
|
|||
|
|
[FormFieldEdit]
|
|||
|
|
[FormFieldQuery]
|
|||
|
|
public T_WB_OUTSOURCE_TYPE Nav_Type { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 上传人
|
|||
|
|
/// </summary>
|
|||
|
|
[Description("上传人")]
|
|||
|
|
[FormFieldTable]
|
|||
|
|
[FormFieldEdit]
|
|||
|
|
[FormFieldQuery]
|
|||
|
|
[DataFieldForeignKey("Nav_User")]
|
|||
|
|
public Guid USER_ID { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 上传人
|
|||
|
|
/// </summary>
|
|||
|
|
[Description("上传人")]
|
|||
|
|
[FormFieldTable]
|
|||
|
|
[FormFieldEdit]
|
|||
|
|
[FormFieldQuery]
|
|||
|
|
public T_FM_USER Nav_User { get; set; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 通过分数线
|
|||
|
|
/// </summary>
|
|||
|
|
[Description("通过分数线")]
|
|||
|
|
[FormFieldTable]
|
|||
|
|
[FormFieldEdit]
|
|||
|
|
[FormFieldQuery]
|
|||
|
|
public int PASSSCORE { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 附件
|
|||
|
|
/// </summary>
|
|||
|
|
[Description("附件")]
|
|||
|
|
public ICollection<T_WB_OUTSOURCE_FILE> Nav_Files { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 教学视频
|
|||
|
|
/// </summary>
|
|||
|
|
[Description("教学视频")]
|
|||
|
|
public ICollection<T_WB_OUTSOURCE_VIDEO> Nav_Videos { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 课程题目
|
|||
|
|
/// </summary>
|
|||
|
|
[Description("课程题目")]
|
|||
|
|
public ICollection<T_WB_OUTSOURCE_TEST> Nav_Tests { get; set; }
|
|||
|
|
|
|||
|
|
[Description("启用标志")]
|
|||
|
|
[FormFieldTable]
|
|||
|
|
[FormFieldEdit]
|
|||
|
|
[FormFieldQuery]
|
|||
|
|
public FMEnableStatusEnum ENABLE_STATUS { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|