/* 代码由框架生成,任何更改都可能导致被代码生成器覆盖,可自行修改。 * Ghrh_YearHumanSettings.cs * *功 能: N / A * 类 名: Ghrh_YearHumanSettings * * Ver 变更日期 负责人 变更内容 * ─────────────────────────────────── *V0.01 2024/11/1 11:10:38 SimonHsiao 初版 * * Copyright(c) 2024 Tiobon Corporation. All Rights Reserved. *┌──────────────────────────────────┐ *│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │ *│ 作者:SimonHsiao │ *└──────────────────────────────────┘ */ namespace Tiobon.Core.Model.Models; /// /// 年度人力配置(Dto.View1) /// public class Ghrh_YearHumanSettingsDto : Ghrh_YearHumanSettings { /// /// 创建信息 /// public string CreateDataInfo { get; set; } /// /// 修改信息 /// public string UpdateDataInfo { get; set; } public string DeptName { get; set; } public string TitleName { get; set; } public string GradeName { get; set; } public string JobName { get; set; } /// /// 起始月 /// public int StartMonth { get; set; } public int? M1_F { get; set; } public int? M2_F { get; set; } public int? M3_F { get; set; } public int? M4_F { get; set; } public int? M5_F { get; set; } public int? M6_F { get; set; } public int? M7_F { get; set; } public int? M8_F { get; set; } public int? M9_F { get; set; } public int? M10_F { get; set; } public int? M11_F { get; set; } public int? M12_F { get; set; } }