|
|
|
@ -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,229 +14,242 @@ |
|
|
|
|
*│ 作者: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> |
|
|
|
|
/// 需求单号 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "RequestNo"), Description("需求单号"), MaxLength(100, ErrorMessage = "需求单号 不能超过 100 个字符")] |
|
|
|
|
public string RequestNo { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 编制内外 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "InOrOut"), Description("编制内外 "), MaxLength(32, ErrorMessage = "编制内外 不能超过 32 个字符")] |
|
|
|
|
public string InOrOut { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 招聘原因 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "Reason"), Description("招聘原因"), MaxLength(200, ErrorMessage = "招聘原因 不能超过 200 个字符")] |
|
|
|
|
public string Reason { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 状态 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "Status"), Description("状态"), MaxLength(32, ErrorMessage = "状态 不能超过 32 个字符")] |
|
|
|
|
public string Status { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 需求月份 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "YearMonth"), Description("需求月份"), MaxLength(32, ErrorMessage = "需求月份 不能超过 32 个字符")] |
|
|
|
|
public string YearMonth { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 招聘类型 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "ResumeType"), Description("招聘类型"), MaxLength(32, ErrorMessage = "招聘类型 不能超过 32 个字符")] |
|
|
|
|
public string ResumeType { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 申请部门ID |
|
|
|
|
/// </summary> |
|
|
|
|
public long? ApplyDeptId { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 岗位名称 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "JobId"), Description("岗位名称"), MaxLength(200, ErrorMessage = "岗位名称 不能超过 200 个字符")] |
|
|
|
|
public string JobId { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 岗位编号 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "JobNo"), Description("岗位编号"), MaxLength(200, ErrorMessage = "岗位编号 不能超过 200 个字符")] |
|
|
|
|
public string JobNo { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 归属部门 |
|
|
|
|
/// </summary> |
|
|
|
|
public long? BelongDeptId { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 职等 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "GradeId"), Description("职等"), MaxLength(2000, ErrorMessage = "职等 不能超过 2000 个字符")] |
|
|
|
|
public string GradeId { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 直间接 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "StaffType1"), Description("直间接"), MaxLength(32, ErrorMessage = "直间接 不能超过 32 个字符")] |
|
|
|
|
public string StaffType1 { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 学历要求 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "Degree"), Description("学历要求"), MaxLength(200, ErrorMessage = "学历要求 不能超过 200 个字符")] |
|
|
|
|
public string Degree { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 工作年限 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "WorkExperience"), Description("工作年限"), MaxLength(200, ErrorMessage = "工作年限 不能超过 200 个字符")] |
|
|
|
|
public string WorkExperience { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 语言要求 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "LanguageRequirement"), Description("语言要求"), MaxLength(2000, ErrorMessage = "语言要求 不能超过 2000 个字符")] |
|
|
|
|
public string LanguageRequirement { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 需招聘人数 |
|
|
|
|
/// </summary> |
|
|
|
|
public int? ResumeCount { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 带训人 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "Trainer"), Description("带训人"), MaxLength(2000, ErrorMessage = "带训人 不能超过 2000 个字符")] |
|
|
|
|
public string Trainer { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 建议到岗时间 |
|
|
|
|
/// </summary> |
|
|
|
|
public DateTime? InTime { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 试用期工资建议 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "ProbationSalary"), Description("试用期工资建议"), MaxLength(200, ErrorMessage = "试用期工资建议 不能超过 200 个字符")] |
|
|
|
|
public string ProbationSalary { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 转正工资建议 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "RegularSalary"), Description("转正工资建议"), MaxLength(200, ErrorMessage = "转正工资建议 不能超过 200 个字符")] |
|
|
|
|
public string RegularSalary { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 知识要求 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "KnowledgeRequirement"), Description("知识要求"), MaxLength(2000, ErrorMessage = "知识要求 不能超过 2000 个字符")] |
|
|
|
|
public string KnowledgeRequirement { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 技能要求 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "SkillRequirement"), Description("技能要求"), MaxLength(2000, ErrorMessage = "技能要求 不能超过 2000 个字符")] |
|
|
|
|
public string SkillRequirement { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 工作内容 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "WorkContent"), Description("工作内容"), MaxLength(2000, ErrorMessage = "工作内容 不能超过 2000 个字符")] |
|
|
|
|
public string WorkContent { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 备注 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "RemarkSz"), Description("备注"), MaxLength(2000, ErrorMessage = "备注 不能超过 2000 个字符")] |
|
|
|
|
public string RemarkSz { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 默认标志 |
|
|
|
|
/// </summary> |
|
|
|
|
public int? IsDefault { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 预留字段1 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "Reverse1"), Description("预留字段1"), MaxLength(1000, ErrorMessage = "预留字段1 不能超过 1000 个字符")] |
|
|
|
|
public string Reverse1 { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 预留字段2 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "Reverse2"), Description("预留字段2"), MaxLength(1000, ErrorMessage = "预留字段2 不能超过 1000 个字符")] |
|
|
|
|
public string Reverse2 { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 预留字段3 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "Reverse3"), Description("预留字段3"), MaxLength(1000, ErrorMessage = "预留字段3 不能超过 1000 个字符")] |
|
|
|
|
public string Reverse3 { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 预留字段4 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "Reverse4"), Description("预留字段4"), MaxLength(1000, ErrorMessage = "预留字段4 不能超过 1000 个字符")] |
|
|
|
|
public string Reverse4 { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 预留字段5 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "Reverse5"), Description("预留字段5"), MaxLength(1000, ErrorMessage = "预留字段5 不能超过 1000 个字符")] |
|
|
|
|
public string Reverse5 { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 预留字段6 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "Reverse6"), Description("预留字段6"), MaxLength(1000, ErrorMessage = "预留字段6 不能超过 1000 个字符")] |
|
|
|
|
public string Reverse6 { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 预留字段7 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "Reverse7"), Description("预留字段7"), MaxLength(1000, ErrorMessage = "预留字段7 不能超过 1000 个字符")] |
|
|
|
|
public string Reverse7 { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 预留字段8 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "Reverse8"), Description("预留字段8"), MaxLength(1000, ErrorMessage = "预留字段8 不能超过 1000 个字符")] |
|
|
|
|
public string Reverse8 { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 预留字段9 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "Reverse9"), Description("预留字段9"), MaxLength(1000, ErrorMessage = "预留字段9 不能超过 1000 个字符")] |
|
|
|
|
public string Reverse9 { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 预留字段10 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "Reverse10"), Description("预留字段10"), MaxLength(1000, ErrorMessage = "预留字段10 不能超过 1000 个字符")] |
|
|
|
|
public string Reverse10 { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 预留字段11 |
|
|
|
|
/// </summary> |
|
|
|
|
public int? ReverseI1 { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 预留字段12 |
|
|
|
|
/// </summary> |
|
|
|
|
public int? ReverseI2 { get; set; } |
|
|
|
|
} |
|
|
|
|
/// 需求单号 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "RequestNo"), Description("需求单号"), MaxLength(100, ErrorMessage = "需求单号 不能超过 100 个字符")] |
|
|
|
|
public string RequestNo { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 编制内外 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "InOrOut"), Description("编制内外 "), MaxLength(32, ErrorMessage = "编制内外 不能超过 32 个字符")] |
|
|
|
|
public string InOrOut { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 招聘原因 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "Reason"), Description("招聘原因"), MaxLength(200, ErrorMessage = "招聘原因 不能超过 200 个字符")] |
|
|
|
|
public string Reason { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 状态 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "Status"), Description("状态"), MaxLength(32, ErrorMessage = "状态 不能超过 32 个字符")] |
|
|
|
|
public string Status { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 需求月份 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "YearMonth"), Description("需求月份"), MaxLength(32, ErrorMessage = "需求月份 不能超过 32 个字符")] |
|
|
|
|
public string YearMonth { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 招聘类型 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "ResumeType"), Description("招聘类型"), MaxLength(32, ErrorMessage = "招聘类型 不能超过 32 个字符")] |
|
|
|
|
public string ResumeType { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 申请部门ID |
|
|
|
|
/// </summary> |
|
|
|
|
public long? ApplyDeptId { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 岗位名称 |
|
|
|
|
/// </summary> |
|
|
|
|
public long? TitleId { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 岗位编号 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "TitleNo"), Description("岗位编号"), MaxLength(32, ErrorMessage = "岗位编号 不能超过 32 个字符")] |
|
|
|
|
public string TitleNo { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 归属部门 |
|
|
|
|
/// </summary> |
|
|
|
|
public long? BelongDeptId { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 职等 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "GradeId"), Description("职等"), MaxLength(2000, ErrorMessage = "职等 不能超过 2000 个字符")] |
|
|
|
|
public string GradeId { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 直间接 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "StaffType1"), Description("直间接"), MaxLength(32, ErrorMessage = "直间接 不能超过 32 个字符")] |
|
|
|
|
public string StaffType1 { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 学历要求 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "Degree"), Description("学历要求"), MaxLength(200, ErrorMessage = "学历要求 不能超过 200 个字符")] |
|
|
|
|
public string Degree { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 工作年限 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "WorkExperience"), Description("工作年限"), MaxLength(200, ErrorMessage = "工作年限 不能超过 200 个字符")] |
|
|
|
|
public string WorkExperience { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 语言要求 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "LanguageRequirement"), Description("语言要求"), MaxLength(2000, ErrorMessage = "语言要求 不能超过 2000 个字符")] |
|
|
|
|
public string LanguageRequirement { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 需招聘人数 |
|
|
|
|
/// </summary> |
|
|
|
|
public int? ResumeCount { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 带训人 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "Trainer"), Description("带训人"), MaxLength(2000, ErrorMessage = "带训人 不能超过 2000 个字符")] |
|
|
|
|
public string Trainer { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 建议到岗时间 |
|
|
|
|
/// </summary> |
|
|
|
|
public DateTime? InTime { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 试用期工资建议 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "ProbationSalary"), Description("试用期工资建议"), MaxLength(200, ErrorMessage = "试用期工资建议 不能超过 200 个字符")] |
|
|
|
|
public string ProbationSalary { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 转正工资建议 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "RegularSalary"), Description("转正工资建议"), MaxLength(200, ErrorMessage = "转正工资建议 不能超过 200 个字符")] |
|
|
|
|
public string RegularSalary { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 知识要求 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "KnowledgeRequirement"), Description("知识要求"), MaxLength(2000, ErrorMessage = "知识要求 不能超过 2000 个字符")] |
|
|
|
|
public string KnowledgeRequirement { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 技能要求 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "SkillRequirement"), Description("技能要求"), MaxLength(2000, ErrorMessage = "技能要求 不能超过 2000 个字符")] |
|
|
|
|
public string SkillRequirement { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 工作内容 |
|
|
|
|
/// </summary> |
|
|
|
|
[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> |
|
|
|
|
[Display(Name = "RemarkSz"), Description("备注"), MaxLength(2000, ErrorMessage = "备注 不能超过 2000 个字符")] |
|
|
|
|
public string RemarkSz { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 默认标志 |
|
|
|
|
/// </summary> |
|
|
|
|
public int? IsDefault { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 预留字段1 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "Reverse1"), Description("预留字段1"), MaxLength(1000, ErrorMessage = "预留字段1 不能超过 1000 个字符")] |
|
|
|
|
public string Reverse1 { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 预留字段2 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "Reverse2"), Description("预留字段2"), MaxLength(1000, ErrorMessage = "预留字段2 不能超过 1000 个字符")] |
|
|
|
|
public string Reverse2 { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 预留字段3 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "Reverse3"), Description("预留字段3"), MaxLength(1000, ErrorMessage = "预留字段3 不能超过 1000 个字符")] |
|
|
|
|
public string Reverse3 { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 预留字段4 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "Reverse4"), Description("预留字段4"), MaxLength(1000, ErrorMessage = "预留字段4 不能超过 1000 个字符")] |
|
|
|
|
public string Reverse4 { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 预留字段5 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "Reverse5"), Description("预留字段5"), MaxLength(1000, ErrorMessage = "预留字段5 不能超过 1000 个字符")] |
|
|
|
|
public string Reverse5 { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 预留字段6 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "Reverse6"), Description("预留字段6"), MaxLength(1000, ErrorMessage = "预留字段6 不能超过 1000 个字符")] |
|
|
|
|
public string Reverse6 { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 预留字段7 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "Reverse7"), Description("预留字段7"), MaxLength(1000, ErrorMessage = "预留字段7 不能超过 1000 个字符")] |
|
|
|
|
public string Reverse7 { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 预留字段8 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "Reverse8"), Description("预留字段8"), MaxLength(1000, ErrorMessage = "预留字段8 不能超过 1000 个字符")] |
|
|
|
|
public string Reverse8 { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 预留字段9 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "Reverse9"), Description("预留字段9"), MaxLength(1000, ErrorMessage = "预留字段9 不能超过 1000 个字符")] |
|
|
|
|
public string Reverse9 { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 预留字段10 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "Reverse10"), Description("预留字段10"), MaxLength(1000, ErrorMessage = "预留字段10 不能超过 1000 个字符")] |
|
|
|
|
public string Reverse10 { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 预留字段11 |
|
|
|
|
/// </summary> |
|
|
|
|
public int? ReverseI1 { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// 预留字段12 |
|
|
|
|
/// </summary> |
|
|
|
|
public int? ReverseI2 { get; set; } |
|
|
|
|
} |
|
|
|
|