|
|
@ -6,7 +6,7 @@ |
|
|
|
* |
|
|
|
* |
|
|
|
* Ver 变更日期 负责人 变更内容 |
|
|
|
* Ver 变更日期 负责人 变更内容 |
|
|
|
* ─────────────────────────────────── |
|
|
|
* ─────────────────────────────────── |
|
|
|
*V0.01 2025/5/7 9:17:56 SimonHsiao 初版 |
|
|
|
*V0.01 2025/5/9 17:05:37 SimonHsiao 初版 |
|
|
|
* |
|
|
|
* |
|
|
|
* Copyright(c) 2025 Tiobon Corporation. All Rights Reserved. |
|
|
|
* Copyright(c) 2025 Tiobon Corporation. All Rights Reserved. |
|
|
|
*┌──────────────────────────────────┐ |
|
|
|
*┌──────────────────────────────────┐ |
|
|
@ -334,4 +334,28 @@ public class Ghre_Request : BasePoco |
|
|
|
/// 培训机构ID |
|
|
|
/// 培训机构ID |
|
|
|
/// </summary> |
|
|
|
/// </summary> |
|
|
|
public long? SchoolId { get; set; } |
|
|
|
public long? SchoolId { get; set; } |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
|
|
|
/// 预算类别 |
|
|
|
|
|
|
|
/// </summary> |
|
|
|
|
|
|
|
[Display(Name = "Budget"), Description("预算类别"), MaxLength(32, ErrorMessage = "预算类别 不能超过 32 个字符")] |
|
|
|
|
|
|
|
public string Budget { get; set; } |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
|
|
|
/// 有无合同 |
|
|
|
|
|
|
|
/// </summary> |
|
|
|
|
|
|
|
[Display(Name = "IsContract"), Description("有无合同"), MaxLength(32, ErrorMessage = "有无合同 不能超过 32 个字符")] |
|
|
|
|
|
|
|
public string IsContract { get; set; } |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
|
|
|
/// 费用是否已支付 |
|
|
|
|
|
|
|
/// </summary> |
|
|
|
|
|
|
|
[Display(Name = "IsPay"), Description("费用是否已支付"), MaxLength(32, ErrorMessage = "费用是否已支付 不能超过 32 个字符")] |
|
|
|
|
|
|
|
public string IsPay { get; set; } |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
|
|
|
/// 支付金额说明 |
|
|
|
|
|
|
|
/// </summary> |
|
|
|
|
|
|
|
[Display(Name = "PayRemark"), Description("支付金额说明"), MaxLength(32, ErrorMessage = "支付金额说明 不能超过 32 个字符")] |
|
|
|
|
|
|
|
public string PayRemark { get; set; } |
|
|
|
} |
|
|
|
} |
|
|
|