|
|
|
@ -6,7 +6,7 @@ |
|
|
|
|
* |
|
|
|
|
* Ver 变更日期 负责人 变更内容 |
|
|
|
|
* ─────────────────────────────────── |
|
|
|
|
*V0.01 2024/7/16 16:52:58 SimonHsiao 初版 |
|
|
|
|
*V0.01 2024/12/25 10:29:10 SimonHsiao 初版 |
|
|
|
|
* |
|
|
|
|
* Copyright(c) 2024 Tiobon Corporation. All Rights Reserved. |
|
|
|
|
*┌──────────────────────────────────┐ |
|
|
|
@ -14,17 +14,19 @@ |
|
|
|
|
*│ 作者:SimonHsiao │ |
|
|
|
|
*└──────────────────────────────────┘ |
|
|
|
|
*/ |
|
|
|
|
using System.ComponentModel; |
|
|
|
|
using System.ComponentModel.DataAnnotations; |
|
|
|
|
namespace Tiobon.Core.Model.Models; |
|
|
|
|
|
|
|
|
|
namespace Tiobon.Core.Model.Models |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 培训证书 (Dto.Base) |
|
|
|
|
/// </summary> |
|
|
|
|
public class Ghre_CertificateBase |
|
|
|
|
{ |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 培训记录 (Dto.Base) |
|
|
|
|
/// 培训证书规则ID |
|
|
|
|
/// </summary> |
|
|
|
|
public class Ghre_CertificateBase |
|
|
|
|
{ |
|
|
|
|
public long? CertificateRuleId { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 员工ID |
|
|
|
@ -70,9 +72,9 @@ namespace Tiobon.Core.Model.Models |
|
|
|
|
public DateTime? ValidityPeriodTime { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 颁发来源 |
|
|
|
|
/// 颁奖来源 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "AwardSource"), Description("颁发来源"), MaxLength(32, ErrorMessage = "颁发来源 不能超过 32 个字符")] |
|
|
|
|
[Display(Name = "AwardSource"), Description("颁奖来源"), MaxLength(32, ErrorMessage = "颁奖来源 不能超过 32 个字符")] |
|
|
|
|
public string AwardSource { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
@ -155,5 +157,4 @@ namespace Tiobon.Core.Model.Models |
|
|
|
|
/// 预留字段12 |
|
|
|
|
/// </summary> |
|
|
|
|
public int? ReverseI2 { get; set; } |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|