You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Tiobon.Web.Core/Tiobon.Core.Model/View/Ghre/Ghre_Course.Dto.View.cs

54 lines
1.9 KiB

/* 代码由框架生成,任何更改都可能导致被代码生成器覆盖,可自行修改。
* Ghre_Course.cs
*
*功 能: N / A
* 类 名: Ghre_Course
*
* Ver 变更日期 负责人 变更内容
* ───────────────────────────────────
*V0.01 2024/6/7 10:21:28 SimonHsiao 初版
*
* Copyright(c) 2024 Tiobon Corporation. All Rights Reserved.
*┌──────────────────────────────────┐
*│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. 
*│ 作者:SimonHsiao │
*└──────────────────────────────────┘
*/
namespace Tiobon.Core.Model.Models;
/// <summary>
/// 课程(Dto.View)
/// </summary>
public class Ghre_CourseDto : Ghre_Course
{
/// <summary>
/// 课程分类
/// </summary>
public string CourseClassName { get; set; }
public string CourseClassName2 { get; set; }
public string CourseSceneName { get; set; }
public string CourseWareName { get; set; }
public string ManagerStaffName { get; set; }
public string CreateName { get; set; }
public string UpdateName { get; set; }
public string ChargeMethodLabel { get; set; }
public string TeacherName { get; set; }
public string InOrOutLabel { get; set; }
public string IsOPenLabel { get; set; }
/// <summary>
/// 创建信息
/// </summary>
public string CreateDataInfo { get; set; }
/// <summary>
/// 修改信息
/// </summary>
public string UpdateDataInfo { get; set; }
public List<long> ExamPaperIds { get; set; } = new List<long>();
public List<long> CourseClassIds { get; set; } = new List<long>();
}