/* 代码由框架生成,任何更改都可能导致被代码生成器覆盖,可自行修改。 * 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; /// /// Ghra_StaffSocialRelation (Model) /// [SugarTable("Ghra_StaffSocialRelation", "Ghra_StaffSocialRelation"), Entity(TableCnName = "Ghra_StaffSocialRelation", TableName = "Ghra_StaffSocialRelation")] public class Ghra_StaffSocialRelation : BasePoco1 { /// /// StaffSocialRelationID /// [SugarColumn(IsNullable = false, IsPrimaryKey = true, IsIdentity = true), Display(Name = "表主键")] public int? StaffSocialRelationID { get; set; } /// /// StaffID /// public int? StaffID { get; set; } /// /// RelationType /// [Display(Name = "RelationType"), Description("RelationType"), MaxLength(100, ErrorMessage = "RelationType 不能超过 100 个字符")] public string RelationType { get; set; } /// /// RelationName /// [Display(Name = "RelationName"), Description("RelationName"), MaxLength(100, ErrorMessage = "RelationName 不能超过 100 个字符")] public string RelationName { get; set; } /// /// IDCardNo /// [Display(Name = "IDCardNo"), Description("IDCardNo"), MaxLength(100, ErrorMessage = "IDCardNo 不能超过 100 个字符")] public string IDCardNo { get; set; } /// /// Gender /// [Display(Name = "Gender"), Description("Gender"), MaxLength(100, ErrorMessage = "Gender 不能超过 100 个字符")] public string Gender { get; set; } /// /// Birthday /// public DateTime? Birthday { get; set; } /// /// CompanyName /// [Display(Name = "CompanyName"), Description("CompanyName"), MaxLength(1000, ErrorMessage = "CompanyName 不能超过 1000 个字符")] public string CompanyName { get; set; } /// /// DeptName /// [Display(Name = "DeptName"), Description("DeptName"), MaxLength(1000, ErrorMessage = "DeptName 不能超过 1000 个字符")] public string DeptName { get; set; } /// /// RelationAddress /// [Display(Name = "RelationAddress"), Description("RelationAddress"), MaxLength(2000, ErrorMessage = "RelationAddress 不能超过 2000 个字符")] public string RelationAddress { get; set; } /// /// RelationTel /// [Display(Name = "RelationTel"), Description("RelationTel"), MaxLength(100, ErrorMessage = "RelationTel 不能超过 100 个字符")] public string RelationTel { get; set; } /// /// AttachmentIDs /// [Display(Name = "AttachmentIDs"), Description("AttachmentIDs"), MaxLength(-1, ErrorMessage = "AttachmentIDs 不能超过 -1 个字符")] public string AttachmentIDs { get; set; } /// /// RemarkSz /// [Display(Name = "RemarkSz"), Description("RemarkSz"), MaxLength(2000, ErrorMessage = "RemarkSz 不能超过 2000 个字符")] public string RemarkSz { get; set; } /// /// SortNo /// public int? SortNo { get; set; } /// /// IsDefault /// public int? IsDefault { get; set; } /// /// Reverse1 /// [Display(Name = "Reverse1"), Description("Reverse1"), MaxLength(1000, ErrorMessage = "Reverse1 不能超过 1000 个字符")] public string Reverse1 { get; set; } /// /// Reverse2 /// [Display(Name = "Reverse2"), Description("Reverse2"), MaxLength(1000, ErrorMessage = "Reverse2 不能超过 1000 个字符")] public string Reverse2 { get; set; } /// /// Reverse3 /// [Display(Name = "Reverse3"), Description("Reverse3"), MaxLength(1000, ErrorMessage = "Reverse3 不能超过 1000 个字符")] public string Reverse3 { get; set; } /// /// Reverse4 /// [Display(Name = "Reverse4"), Description("Reverse4"), MaxLength(1000, ErrorMessage = "Reverse4 不能超过 1000 个字符")] public string Reverse4 { get; set; } /// /// Reverse5 /// [Display(Name = "Reverse5"), Description("Reverse5"), MaxLength(1000, ErrorMessage = "Reverse5 不能超过 1000 个字符")] public string Reverse5 { get; set; } }