/* 代码由框架生成,任何更改都可能导致被代码生成器覆盖,可自行修改。
* Ghre_StudyRule.cs
*
*功 能: N / A
* 类 名: Ghre_StudyRule
*
* Ver 变更日期 负责人 变更内容
* ───────────────────────────────────
*V0.01 2024/7/19 15:24:17 SimonHsiao 初版
*
* Copyright(c) 2024 Tiobon Corporation. All Rights Reserved.
*┌──────────────────────────────────┐
*│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │
*│ 作者:SimonHsiao │
*└──────────────────────────────────┘
*/
namespace Tiobon.Core.Model.Models;
///
/// 必选修规则(Dto.View)
///
public class Ghre_StudyRuleDto : Ghre_StudyRule
{
///
/// 创建信息
///
public string CreateDataInfo { get; set; }
///
/// 修改信息
///
public string UpdateDataInfo { get; set; }
public string CourseOrSceneName { get; set; }
public string ZoneName { get; set; }
public string DeptName { get; set; }
public string TitleName { get; set; }
public string GradeName { get; set; }
public string JobName { get; set; }
public string RuleTypeLabel { get; set; }
public string TrainTypeLabel { get; set; }
public string StaffNames { get; set; }
public List Staffs { get; set; }
public List ZoneIds { get; set; } = new List();
public List DeptIds { get; set; } = new List();
public List TitleIds { get; set; } = new List();
public List GradeIds { get; set; } = new List();
public List JobIds { get; set; } = new List();
}