|
|
@ -6,7 +6,7 @@ |
|
|
|
* |
|
|
|
* |
|
|
|
* Ver 变更日期 负责人 变更内容 |
|
|
|
* Ver 变更日期 负责人 变更内容 |
|
|
|
* ─────────────────────────────────── |
|
|
|
* ─────────────────────────────────── |
|
|
|
*V0.01 2024/12/6 13:49:56 SimonHsiao 初版 |
|
|
|
*V0.01 2024/12/16 10:46:41 SimonHsiao 初版 |
|
|
|
* |
|
|
|
* |
|
|
|
* Copyright(c) 2024 Tiobon Corporation. All Rights Reserved. |
|
|
|
* Copyright(c) 2024 Tiobon Corporation. All Rights Reserved. |
|
|
|
*┌──────────────────────────────────┐ |
|
|
|
*┌──────────────────────────────────┐ |
|
|
@ -473,4 +473,16 @@ public class Ghrh_Resume : BasePoco |
|
|
|
/// </summary> |
|
|
|
/// </summary> |
|
|
|
[Display(Name = "OfferFileUrl"), Description("Offer文件路径"), MaxLength(256, ErrorMessage = "Offer文件路径 不能超过 256 个字符")] |
|
|
|
[Display(Name = "OfferFileUrl"), Description("Offer文件路径"), MaxLength(256, ErrorMessage = "Offer文件路径 不能超过 256 个字符")] |
|
|
|
public string OfferFileUrl { get; set; } |
|
|
|
public string OfferFileUrl { get; set; } |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
|
|
|
/// 应聘部门 |
|
|
|
|
|
|
|
/// </summary> |
|
|
|
|
|
|
|
[Display(Name = "DepartmentName"), Description("应聘部门"), MaxLength(32, ErrorMessage = "应聘部门 不能超过 32 个字符")] |
|
|
|
|
|
|
|
public string DepartmentName { get; set; } |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
|
|
|
/// 应聘岗位 |
|
|
|
|
|
|
|
/// </summary> |
|
|
|
|
|
|
|
[Display(Name = "PositionName"), Description("应聘岗位"), MaxLength(32, ErrorMessage = "应聘岗位 不能超过 32 个字符")] |
|
|
|
|
|
|
|
public string PositionName { get; set; } |
|
|
|
} |
|
|
|
} |
|
|
|