|
|
|
@ -6,9 +6,9 @@ |
|
|
|
|
* |
|
|
|
|
* Ver 变更日期 负责人 变更内容 |
|
|
|
|
* ─────────────────────────────────── |
|
|
|
|
*V0.01 2024/4/29 11:50:29 SimonHsiao 初版 |
|
|
|
|
*V0.01 2025/4/7 14:23:04 SimonHsiao 初版 |
|
|
|
|
* |
|
|
|
|
* Copyright(c) 2024 Tiobon Corporation. All Rights Reserved. |
|
|
|
|
* Copyright(c) 2025 Tiobon Corporation. All Rights Reserved. |
|
|
|
|
*┌──────────────────────────────────┐ |
|
|
|
|
*│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │ |
|
|
|
|
*│ 作者:SimonHsiao │ |
|
|
|
@ -73,6 +73,7 @@ public class Ghre_ExamPaperBase |
|
|
|
|
/// 关联ID |
|
|
|
|
/// </summary> |
|
|
|
|
public long? LinkId { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 关联次数 |
|
|
|
|
/// </summary> |
|
|
|
@ -81,27 +82,15 @@ public class Ghre_ExamPaperBase |
|
|
|
|
/// <summary> |
|
|
|
|
/// 封面图片URL |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "CoverUrl"), Description("封面图片URL"), MaxLength(64, ErrorMessage = "封面图片URL 不能超过 64 个字符")] |
|
|
|
|
[Display(Name = "CoverUrl"), Description("封面图片URL"), MaxLength(256, ErrorMessage = "封面图片URL 不能超过 256 个字符")] |
|
|
|
|
public string CoverUrl { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 封面图片背景 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "CoverBackGround"), Description("封面图片背景"), MaxLength(64, ErrorMessage = "封面图片背景 不能超过 64 个字符")] |
|
|
|
|
public string CoverBackGround { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 试卷风格 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "Style"), Description("试卷风格"), MaxLength(32, ErrorMessage = "试卷风格 不能超过 32 个字符")] |
|
|
|
|
public string Style { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 出题方式 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "SetMethod"), Description("关联类型"), MaxLength(32, ErrorMessage = "关联类型 不能超过 32 个字符")] |
|
|
|
|
public string SetMethod { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 状态 |
|
|
|
|
/// </summary> |
|
|
|
@ -188,4 +177,21 @@ public class Ghre_ExamPaperBase |
|
|
|
|
/// 预留字段12 |
|
|
|
|
/// </summary> |
|
|
|
|
public int? ReverseI2 { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 出题方式 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "SetMethod"), Description("出题方式"), MaxLength(32, ErrorMessage = "出题方式 不能超过 32 个字符")] |
|
|
|
|
public string SetMethod { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 封面图片背景 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "CoverBackGround"), Description("封面图片背景"), MaxLength(32, ErrorMessage = "封面图片背景 不能超过 32 个字符")] |
|
|
|
|
public string CoverBackGround { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 内置 |
|
|
|
|
/// </summary> |
|
|
|
|
public bool? BuiltIn { get; set; } |
|
|
|
|
} |
|
|
|
|