@@ -109,6 +109,19 @@ namespace Learun.Application.TwoDevelopment.EducationalAdministration
/// </summary>
[Column("READER")]
public string Reader { get; set; }
/// <summary>
/// 发起时间
/// </summary>
/// <returns></returns>
[Column("CREATETIME")]
public DateTime? CreateTime { get; set; }
/// <summary>
/// 发起人
/// </summary>
/// <returns></returns>
[Column("CREATEUSER")]
public string CreateUser { get; set; }
#endregion
#region 扩展操作
@@ -131,19 +144,6 @@ namespace Learun.Application.TwoDevelopment.EducationalAdministration
#region 扩展字段
[NotMapped]
public string Listarray { get; set; }
/// <summary>
/// 发起时间
/// </summary>
/// <returns></returns>
[NotMapped]
public DateTime? CreateTime { get; set; }
/// <summary>
/// 发起人
/// </summary>
/// <returns></returns>
[NotMapped]
public string CreateUser { get; set; }
#endregion
}
}