|
|
|
@ -6,7 +6,7 @@ |
|
|
|
|
* |
|
|
|
|
* Ver 变更日期 负责人 变更内容 |
|
|
|
|
* ─────────────────────────────────── |
|
|
|
|
*V0.01 2024/5/28 14:28:16 SimonHsiao 初版 |
|
|
|
|
*V0.01 2024/5/28 18:09:05 SimonHsiao 初版 |
|
|
|
|
* |
|
|
|
|
* Copyright(c) 2024 Tiobon Corporation. All Rights Reserved. |
|
|
|
|
*┌──────────────────────────────────┐ |
|
|
|
@ -22,9 +22,9 @@ namespace Tiobon.Core.Model.Models |
|
|
|
|
{ |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// Ghre_Exam (Model) |
|
|
|
|
/// 考试 (Model) |
|
|
|
|
/// </summary> |
|
|
|
|
[SugarTable("Ghre_Exam", "Ghre_Exam"), Entity(TableCnName = "Ghre_Exam", TableName = "Ghre_Exam")] |
|
|
|
|
[SugarTable("Ghre_Exam", "Ghre_Exam"), Entity(TableCnName = "考试", TableName = "Ghre_Exam")] |
|
|
|
|
public class Ghre_Exam : BasePoco |
|
|
|
|
{ |
|
|
|
|
|
|
|
|
@ -49,12 +49,24 @@ namespace Tiobon.Core.Model.Models |
|
|
|
|
/// </summary> |
|
|
|
|
public long? ExamPaperId { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 封面图片URL |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "CoverUrl"), Description("封面图片URL"), MaxLength(256, ErrorMessage = "封面图片URL 不能超过 256 个字符")] |
|
|
|
|
public string CoverUrl { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 考试编号 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "ExamNo"), Description("考试编号"), MaxLength(32, ErrorMessage = "考试编号 不能超过 32 个字符")] |
|
|
|
|
public string ExamNo { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 考试名称 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "ExamName"), Description("考试名称"), MaxLength(32, ErrorMessage = "考试名称 不能超过 32 个字符")] |
|
|
|
|
public string ExamName { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 日期类型 |
|
|
|
|
/// </summary> |
|
|
|
|