|
|
|
@ -6,7 +6,7 @@ |
|
|
|
|
* |
|
|
|
|
* Ver 变更日期 负责人 变更内容 |
|
|
|
|
* ─────────────────────────────────── |
|
|
|
|
*V0.01 2024/8/10 23:34:48 SimonHsiao 初版 |
|
|
|
|
*V0.01 2024/12/19 9:27:28 SimonHsiao 初版 |
|
|
|
|
* |
|
|
|
|
* Copyright(c) 2024 Tiobon Corporation. All Rights Reserved. |
|
|
|
|
*┌──────────────────────────────────┐ |
|
|
|
@ -14,33 +14,30 @@ |
|
|
|
|
*│ 作者:SimonHsiao │ |
|
|
|
|
*└──────────────────────────────────┘ |
|
|
|
|
*/ |
|
|
|
|
using System.ComponentModel; |
|
|
|
|
using System.ComponentModel.DataAnnotations; |
|
|
|
|
namespace Tiobon.Core.Model.Models; |
|
|
|
|
|
|
|
|
|
namespace Tiobon.Core.Model.Models |
|
|
|
|
{ |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// Ghra_Title (Dto.Base) |
|
|
|
|
/// </summary> |
|
|
|
|
public class Ghra_TitleBase |
|
|
|
|
{ |
|
|
|
|
/// <summary> |
|
|
|
|
/// 岗位 (Dto.Base) |
|
|
|
|
/// </summary> |
|
|
|
|
public class Ghra_TitleBase |
|
|
|
|
{ |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// TitleID |
|
|
|
|
/// 岗位ID |
|
|
|
|
/// </summary> |
|
|
|
|
public int? TitleID { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// TitleNo |
|
|
|
|
/// 岗位编号 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "TitleNo"), Description("TitleNo"), MaxLength(100, ErrorMessage = "TitleNo 不能超过 100 个字符")] |
|
|
|
|
[Display(Name = "TitleNo"), Description("岗位编号"), MaxLength(100, ErrorMessage = "岗位编号 不能超过 100 个字符")] |
|
|
|
|
public string TitleNo { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// TitleName |
|
|
|
|
/// 岗位名称 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "TitleName"), Description("TitleName"), MaxLength(1000, ErrorMessage = "TitleName 不能超过 1000 个字符")] |
|
|
|
|
[Display(Name = "TitleName"), Description("岗位名称"), MaxLength(1000, ErrorMessage = "岗位名称 不能超过 1000 个字符")] |
|
|
|
|
public string TitleName { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
@ -50,29 +47,29 @@ namespace Tiobon.Core.Model.Models |
|
|
|
|
public string MKey { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// DataBelongID |
|
|
|
|
/// 集团数据归属 |
|
|
|
|
/// </summary> |
|
|
|
|
public int? DataBelongID { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// DeptID |
|
|
|
|
/// 对应部门 |
|
|
|
|
/// </summary> |
|
|
|
|
public int? DeptID { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// TitleTypeID |
|
|
|
|
/// 岗位分类 |
|
|
|
|
/// </summary> |
|
|
|
|
public int? TitleTypeID { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// TitleLevelID |
|
|
|
|
/// 岗位层级 |
|
|
|
|
/// </summary> |
|
|
|
|
public int? TitleLevelID { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// TitleQualifiy |
|
|
|
|
/// 岗位资格 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "TitleQualifiy"), Description("TitleQualifiy"), MaxLength(2000, ErrorMessage = "TitleQualifiy 不能超过 2000 个字符")] |
|
|
|
|
[Display(Name = "TitleQualifiy"), Description("岗位资格"), MaxLength(2000, ErrorMessage = "岗位资格 不能超过 2000 个字符")] |
|
|
|
|
public string TitleQualifiy { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
@ -82,18 +79,18 @@ namespace Tiobon.Core.Model.Models |
|
|
|
|
public string TitleDesc { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// RemarkSz |
|
|
|
|
/// 备注 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "RemarkSz"), Description("RemarkSz"), MaxLength(2000, ErrorMessage = "RemarkSz 不能超过 2000 个字符")] |
|
|
|
|
[Display(Name = "RemarkSz"), Description("备注"), MaxLength(2000, ErrorMessage = "备注 不能超过 2000 个字符")] |
|
|
|
|
public string RemarkSz { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// SortNo |
|
|
|
|
/// 序号 |
|
|
|
|
/// </summary> |
|
|
|
|
public int? SortNo { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// IsDefault |
|
|
|
|
/// 默认 |
|
|
|
|
/// </summary> |
|
|
|
|
public int? IsDefault { get; set; } |
|
|
|
|
|
|
|
|
@ -170,5 +167,4 @@ namespace Tiobon.Core.Model.Models |
|
|
|
|
/// ReverseI4 |
|
|
|
|
/// </summary> |
|
|
|
|
public int? ReverseI4 { get; set; } |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|