|
|
|
@ -6,7 +6,7 @@ |
|
|
|
|
* |
|
|
|
|
* Ver 变更日期 负责人 变更内容 |
|
|
|
|
* ─────────────────────────────────── |
|
|
|
|
*V0.01 2024/11/22 15:43:22 SimonHsiao 初版 |
|
|
|
|
*V0.01 2024/12/11 13:43:39 SimonHsiao 初版 |
|
|
|
|
* |
|
|
|
|
* Copyright(c) 2024 Tiobon Corporation. All Rights Reserved. |
|
|
|
|
*┌──────────────────────────────────┐ |
|
|
|
@ -25,10 +25,9 @@ public class Ghrh_YearHumanSettings : BasePoco |
|
|
|
|
{ |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 年月 |
|
|
|
|
/// 年度 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "YearMonth"), Description("年月"), MaxLength(100, ErrorMessage = "年月 不能超过 100 个字符")] |
|
|
|
|
public string YearMonth { get; set; } |
|
|
|
|
public int? Year { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 部门ID |
|
|
|
@ -51,34 +50,124 @@ public class Ghrh_YearHumanSettings : BasePoco |
|
|
|
|
public int? JobId { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 预算内编制数 |
|
|
|
|
/// 1月 |
|
|
|
|
/// </summary> |
|
|
|
|
public int? BudgetInStaffCount { get; set; } |
|
|
|
|
public int? M1 { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 预算外编制数 |
|
|
|
|
/// 2月 |
|
|
|
|
/// </summary> |
|
|
|
|
public int? BudgetOutStaffCount { get; set; } |
|
|
|
|
public int? M2 { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 预算内在编人数 |
|
|
|
|
/// 3月 |
|
|
|
|
/// </summary> |
|
|
|
|
public int? BudgetInDutyStaffCount { get; set; } |
|
|
|
|
public int? M3 { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 预算外在编人数 |
|
|
|
|
/// 4月 |
|
|
|
|
/// </summary> |
|
|
|
|
public int? BudgetOutDutyStaffCount { get; set; } |
|
|
|
|
public int? M4 { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 预算内缺编人数 |
|
|
|
|
/// 5月 |
|
|
|
|
/// </summary> |
|
|
|
|
public int? BudgetInLackStaffCount { get; set; } |
|
|
|
|
public int? M5 { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 预算外缺编人数 |
|
|
|
|
/// 6月 |
|
|
|
|
/// </summary> |
|
|
|
|
public int? BudgetOutLackStaffCount { get; set; } |
|
|
|
|
public int? M6 { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 7月 |
|
|
|
|
/// </summary> |
|
|
|
|
public int? M7 { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 8月 |
|
|
|
|
/// </summary> |
|
|
|
|
public int? M8 { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 9月 |
|
|
|
|
/// </summary> |
|
|
|
|
public int? M9 { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 10月 |
|
|
|
|
/// </summary> |
|
|
|
|
public int? M10 { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 11月 |
|
|
|
|
/// </summary> |
|
|
|
|
public int? M11 { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 12月 |
|
|
|
|
/// </summary> |
|
|
|
|
public int? M12 { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 1月调整数 |
|
|
|
|
/// </summary> |
|
|
|
|
public int? M1_A { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 2月调整数 |
|
|
|
|
/// </summary> |
|
|
|
|
public int? M2_A { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 3月调整数 |
|
|
|
|
/// </summary> |
|
|
|
|
public int? M3_A { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 4月调整数 |
|
|
|
|
/// </summary> |
|
|
|
|
public int? M4_A { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 5月调整数 |
|
|
|
|
/// </summary> |
|
|
|
|
public int? M5_A { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 6月调整数 |
|
|
|
|
/// </summary> |
|
|
|
|
public int? M6_A { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 7月调整数 |
|
|
|
|
/// </summary> |
|
|
|
|
public int? M7_A { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 8月调整数 |
|
|
|
|
/// </summary> |
|
|
|
|
public int? M8_A { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 9月调整数 |
|
|
|
|
/// </summary> |
|
|
|
|
public int? M9_A { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 10月调整数 |
|
|
|
|
/// </summary> |
|
|
|
|
public int? M10_A { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 11月调整数 |
|
|
|
|
/// </summary> |
|
|
|
|
public int? M11_A { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 12月调整数 |
|
|
|
|
/// </summary> |
|
|
|
|
public int? M12_A { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 发起人ID |
|
|
|
|