|
|
|
@ -0,0 +1,142 @@ |
|
|
|
|
/* 代码由框架生成,任何更改都可能导致被代码生成器覆盖,可自行修改。 |
|
|
|
|
* Ghra_StaffSocialRelation.cs |
|
|
|
|
* |
|
|
|
|
*功 能: N / A |
|
|
|
|
* 类 名: Ghra_StaffSocialRelation |
|
|
|
|
* |
|
|
|
|
* Ver 变更日期 负责人 变更内容 |
|
|
|
|
* ─────────────────────────────────── |
|
|
|
|
*V0.01 2024/12/6 14:25:37 SimonHsiao 初版 |
|
|
|
|
* |
|
|
|
|
* Copyright(c) 2024 Tiobon Corporation. All Rights Reserved. |
|
|
|
|
*┌──────────────────────────────────┐ |
|
|
|
|
*│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │ |
|
|
|
|
*│ 作者:SimonHsiao │ |
|
|
|
|
*└──────────────────────────────────┘ |
|
|
|
|
*/ |
|
|
|
|
namespace Tiobon.Core.Model.Models; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// Ghra_StaffSocialRelation (Model) |
|
|
|
|
/// </summary> |
|
|
|
|
[SugarTable("Ghra_StaffSocialRelation", "Ghra_StaffSocialRelation"), Entity(TableCnName = "Ghra_StaffSocialRelation", TableName = "Ghra_StaffSocialRelation")] |
|
|
|
|
public class Ghra_StaffSocialRelation : BasePoco1 |
|
|
|
|
{ |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// StaffSocialRelationID |
|
|
|
|
/// </summary> |
|
|
|
|
[SugarColumn(IsNullable = false, IsPrimaryKey = true, IsIdentity = true), Display(Name = "表主键")] |
|
|
|
|
public int? StaffSocialRelationID { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// StaffID |
|
|
|
|
/// </summary> |
|
|
|
|
public int? StaffID { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// RelationType |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "RelationType"), Description("RelationType"), MaxLength(100, ErrorMessage = "RelationType 不能超过 100 个字符")] |
|
|
|
|
public string RelationType { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// RelationName |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "RelationName"), Description("RelationName"), MaxLength(100, ErrorMessage = "RelationName 不能超过 100 个字符")] |
|
|
|
|
public string RelationName { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// IDCardNo |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "IDCardNo"), Description("IDCardNo"), MaxLength(100, ErrorMessage = "IDCardNo 不能超过 100 个字符")] |
|
|
|
|
public string IDCardNo { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// Gender |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "Gender"), Description("Gender"), MaxLength(100, ErrorMessage = "Gender 不能超过 100 个字符")] |
|
|
|
|
public string Gender { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// Birthday |
|
|
|
|
/// </summary> |
|
|
|
|
public DateTime? Birthday { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// CompanyName |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "CompanyName"), Description("CompanyName"), MaxLength(1000, ErrorMessage = "CompanyName 不能超过 1000 个字符")] |
|
|
|
|
public string CompanyName { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// DeptName |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "DeptName"), Description("DeptName"), MaxLength(1000, ErrorMessage = "DeptName 不能超过 1000 个字符")] |
|
|
|
|
public string DeptName { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// RelationAddress |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "RelationAddress"), Description("RelationAddress"), MaxLength(2000, ErrorMessage = "RelationAddress 不能超过 2000 个字符")] |
|
|
|
|
public string RelationAddress { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// RelationTel |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "RelationTel"), Description("RelationTel"), MaxLength(100, ErrorMessage = "RelationTel 不能超过 100 个字符")] |
|
|
|
|
public string RelationTel { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// AttachmentIDs |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "AttachmentIDs"), Description("AttachmentIDs"), MaxLength(-1, ErrorMessage = "AttachmentIDs 不能超过 -1 个字符")] |
|
|
|
|
public string AttachmentIDs { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// RemarkSz |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "RemarkSz"), Description("RemarkSz"), MaxLength(2000, ErrorMessage = "RemarkSz 不能超过 2000 个字符")] |
|
|
|
|
public string RemarkSz { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// SortNo |
|
|
|
|
/// </summary> |
|
|
|
|
public int? SortNo { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// IsDefault |
|
|
|
|
/// </summary> |
|
|
|
|
public int? IsDefault { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// Reverse1 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "Reverse1"), Description("Reverse1"), MaxLength(1000, ErrorMessage = "Reverse1 不能超过 1000 个字符")] |
|
|
|
|
public string Reverse1 { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// Reverse2 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "Reverse2"), Description("Reverse2"), MaxLength(1000, ErrorMessage = "Reverse2 不能超过 1000 个字符")] |
|
|
|
|
public string Reverse2 { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// Reverse3 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "Reverse3"), Description("Reverse3"), MaxLength(1000, ErrorMessage = "Reverse3 不能超过 1000 个字符")] |
|
|
|
|
public string Reverse3 { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// Reverse4 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "Reverse4"), Description("Reverse4"), MaxLength(1000, ErrorMessage = "Reverse4 不能超过 1000 个字符")] |
|
|
|
|
public string Reverse4 { get; set; } |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// Reverse5 |
|
|
|
|
/// </summary> |
|
|
|
|
[Display(Name = "Reverse5"), Description("Reverse5"), MaxLength(1000, ErrorMessage = "Reverse5 不能超过 1000 个字符")] |
|
|
|
|
public string Reverse5 { get; set; } |
|
|
|
|
} |