/* 代码由框架生成,任何更改都可能导致被代码生成器覆盖,可自行修改。
* Ghre_Exam.cs
*
*功 能: N / A
* 类 名: Ghre_Exam
*
* Ver 变更日期 负责人 变更内容
* ───────────────────────────────────
*V0.01 2024/5/28 18:09:05 SimonHsiao 初版
*
* Copyright(c) 2024 Tiobon Corporation. All Rights Reserved.
*┌──────────────────────────────────┐
*│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │
*│ 作者:SimonHsiao │
*└──────────────────────────────────┘
*/
namespace Tiobon.Core.Model.Models;
///
/// 考试(Dto.View)
///
public class Ghre_ExamDto : Ghre_Exam
{
///
/// 创建信息
///
public string CreateDataInfo { get; set; }
///
/// 修改信息
///
public string UpdateDataInfo { get; set; }
public string AfterHowLongLabel { get; set; }
public string CourseName { get; set; }
public string ExamPaperName { get; set; }
public string ExamModeLabel { get; set; }
public string OpenClassName { get; set; }
///
/// 可查看明细
///
public int canDetail { get; set; } = 1;
///
/// 可编辑
///
public int canEdit { get; set; } = 1;
///
/// 可复制
///
public int canCopy { get; set; } = 1;
///
/// 可作废
///
public int canDelete { get; set; } = 1;
///
/// 可预览
///
public int canPreview { get; set; } = 1;
///
/// 显示考试链接按钮
///
public int showLink { get; set; } = 1;
///
/// 显示成绩按钮
///
public int showResult { get; set; } = 1;
///
/// 可取消归档
///
public int canClose { get; set; } = 1;
public string DataBelongName { get; set; }
}