|
|
|
@ -6,7 +6,7 @@ |
|
|
|
|
* |
|
|
|
|
* Ver 变更日期 负责人 变更内容 |
|
|
|
|
* ─────────────────────────────────── |
|
|
|
|
*V0.01 2024/11/1 10:14:40 SimonHsiao 初版 |
|
|
|
|
*V0.01 2024/11/13 15:52:00 SimonHsiao 初版 |
|
|
|
|
* |
|
|
|
|
* Copyright(c) 2024 Tiobon Corporation. All Rights Reserved. |
|
|
|
|
*┌──────────────────────────────────┐ |
|
|
|
@ -14,15 +14,15 @@ |
|
|
|
|
*│ 作者:SimonHsiao │ |
|
|
|
|
*└──────────────────────────────────┘ |
|
|
|
|
*/ |
|
|
|
|
namespace Tiobon.Core.Model.Models |
|
|
|
|
{ |
|
|
|
|
namespace Tiobon.Core.Model.Models; |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 人力需求维护 (Model) |
|
|
|
|
/// </summary> |
|
|
|
|
[SugarTable("Ghrh_HumanRequest", "Ghrh_HumanRequest"), Entity(TableCnName = "人力需求维护", TableName = "Ghrh_HumanRequest")] |
|
|
|
|
public class Ghrh_HumanRequest : BasePoco |
|
|
|
|
{ |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 人力需求维护 (Model) |
|
|
|
|
/// </summary> |
|
|
|
|
[SugarTable("Ghrh_HumanRequest", "Ghrh_HumanRequest"), Entity(TableCnName = "人力需求维护", TableName = "Ghrh_HumanRequest")] |
|
|
|
|
public class Ghrh_HumanRequest : BasePoco |
|
|
|
|
{ |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 需求单号 |
|
|
|
@ -68,14 +68,13 @@ namespace Tiobon.Core.Model.Models |
|
|
|
|
/// <summary> |
|
|
|
|
/// 岗位名称 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "JobId"), Description("岗位名称"), MaxLength(200, ErrorMessage = "岗位名称 不能超过 200 个字符")] |
|
|
|
|
public string JobId { get; set; } |
|
|
|
|
public long? TitleId { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 岗位编号 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "JobNo"), Description("岗位编号"), MaxLength(200, ErrorMessage = "岗位编号 不能超过 200 个字符")] |
|
|
|
|
public string JobNo { get; set; } |
|
|
|
|
[Display(Name = "TitleNo"), Description("岗位编号"), MaxLength(32, ErrorMessage = "岗位编号 不能超过 32 个字符")] |
|
|
|
|
public string TitleNo { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 归属部门 |
|
|
|
@ -158,6 +157,21 @@ namespace Tiobon.Core.Model.Models |
|
|
|
|
[Display(Name = "WorkContent"), Description("工作内容"), MaxLength(2000, ErrorMessage = "工作内容 不能超过 2000 个字符")] |
|
|
|
|
public string WorkContent { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 推荐人数 |
|
|
|
|
/// </summary> |
|
|
|
|
public int? RecommendCount { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 面试人数 |
|
|
|
|
/// </summary> |
|
|
|
|
public int? InterviewCount { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 录用人数 |
|
|
|
|
/// </summary> |
|
|
|
|
public int? OfferCount { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 备注 |
|
|
|
|
/// </summary> |
|
|
|
@ -238,5 +252,4 @@ namespace Tiobon.Core.Model.Models |
|
|
|
|
/// 预留字段12 |
|
|
|
|
/// </summary> |
|
|
|
|
public int? ReverseI2 { get; set; } |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|