/* 代码由框架生成,任何更改都可能导致被代码生成器覆盖,可自行修改。 * Ghre_Question.cs * *功 能: N / A * 类 名: Ghre_Question * * Ver 变更日期 负责人 变更内容 * ─────────────────────────────────── *V0.01 2024/4/28 11:00:27 SimonHsiao 初版 * * Copyright(c) 2024 Tiobon Corporation. All Rights Reserved. *┌──────────────────────────────────┐ *│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │ *│ 作者:SimonHsiao │ *└──────────────────────────────────┘ */ using System.ComponentModel.DataAnnotations; using System.ComponentModel; namespace Tiobon.Core.Model.Models { /// /// 题目(Dto.View) /// public class Ghre_QuestionDto : Ghre_Question { /// /// 课程名称 /// [Display(Name = "CourseName"), Description("课程名称")] public string CourseName { get; set; } public long CourseTypeId { get; set; } public string CourseType { get; set; } /// /// 难易程度 /// public string DifficultyLevelLabel { get; set; } /// /// 题目类型 /// public string QuestionTypeLabel { get; set; } /// /// 创建信息 /// public string CreateDataInfo { get; set; } /// /// 修改信息 /// public string UpdateDataInfo { get; set; } } }