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.
|
|
/* 代码由框架生成,任何更改都可能导致被代码生成器覆盖,可自行修改。
|
|
|
* 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;
|
|
|
|
|
|
/// <summary>
|
|
|
/// 必选修规则 (Dto.EditInput)
|
|
|
/// </summary>
|
|
|
public class EditGhre_StudyRuleInput : Ghre_StudyRuleBase
|
|
|
{
|
|
|
public List<int> Staffs { get; set; }
|
|
|
|
|
|
public List<int> ZoneIds { get; set; }
|
|
|
|
|
|
|
|
|
public List<int> DeptIds { get; set; }
|
|
|
|
|
|
|
|
|
public List<int> TitleIds { get; set; }
|
|
|
|
|
|
|
|
|
public List<int> GradeIds { get; set; }
|
|
|
|
|
|
|
|
|
public List<int> JobIds { get; set; }
|
|
|
}
|
|
|
|