/* 代码由框架生成,任何更改都可能导致被代码生成器覆盖,可自行修改。
* Ghro_Dept.cs
*
*功 能: N / A
* 类 名: Ghro_Dept
*
* Ver 变更日期 负责人 变更内容
* ───────────────────────────────────
*V0.01 2024/6/27 15:40:05 SimonHsiao 初版
*
* Copyright(c) 2024 Tiobon Corporation. All Rights Reserved.
*┌──────────────────────────────────┐
*│ 此技术信息为本公司机密信息,未经本公司书面同意禁止向第三方披露. │
*│ 作者:SimonHsiao │
*└──────────────────────────────────┘
*/
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
namespace Tiobon.Core.Model.Models
{
///
/// Ghro_Dept (Dto.Base)
///
public class Ghro_DeptBase
{
///
/// DeptID
///
public int? DeptID { get; set; }
///
/// DeptNo
///
[Display(Name = "DeptNo"), Description("DeptNo"), MaxLength(100, ErrorMessage = "DeptNo 不能超过 100 个字符")]
public string DeptNo { get; set; }
///
/// DeptName
///
[Display(Name = "DeptName"), Description("DeptName"), MaxLength(200, ErrorMessage = "DeptName 不能超过 200 个字符")]
public string DeptName { get; set; }
///
/// DeptEname
///
[Display(Name = "DeptEname"), Description("DeptEname"), MaxLength(200, ErrorMessage = "DeptEname 不能超过 200 个字符")]
public string DeptEname { get; set; }
///
/// BeginDate
///
public DateTime? BeginDate { get; set; }
///
/// EndDate
///
public DateTime? EndDate { get; set; }
///
/// DataBelongID
///
[Display(Name = "DataBelongID"), Description("DataBelongID"), MaxLength(-1, ErrorMessage = "DataBelongID 不能超过 -1 个字符")]
public string DataBelongID { get; set; }
///
/// Mkey
///
[Display(Name = "Mkey"), Description("Mkey"), MaxLength(1000, ErrorMessage = "Mkey 不能超过 1000 个字符")]
public string Mkey { get; set; }
///
/// DeptType
///
[Display(Name = "DeptType"), Description("DeptType"), MaxLength(100, ErrorMessage = "DeptType 不能超过 100 个字符")]
public string DeptType { get; set; }
///
/// DeptType1
///
[Display(Name = "DeptType1"), Description("DeptType1"), MaxLength(100, ErrorMessage = "DeptType1 不能超过 100 个字符")]
public string DeptType1 { get; set; }
///
/// DeptType2
///
[Display(Name = "DeptType2"), Description("DeptType2"), MaxLength(100, ErrorMessage = "DeptType2 不能超过 100 个字符")]
public string DeptType2 { get; set; }
///
/// DeptLevel
///
[Display(Name = "DeptLevel"), Description("DeptLevel"), MaxLength(100, ErrorMessage = "DeptLevel 不能超过 100 个字符")]
public string DeptLevel { get; set; }
///
/// DeptManagerID
///
public int? DeptManagerID { get; set; }
///
/// DeptManagerID2
///
public int? DeptManagerID2 { get; set; }
///
/// DeptAssID
///
public int? DeptAssID { get; set; }
///
/// ParentDeptID
///
public int? ParentDeptID { get; set; }
///
/// ParentDeptID2
///
public int? ParentDeptID2 { 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; }
///
/// AttachmentIDs
///
[Display(Name = "AttachmentIDs"), Description("AttachmentIDs"), MaxLength(-1, ErrorMessage = "AttachmentIDs 不能超过 -1 个字符")]
public string AttachmentIDs { 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; }
///
/// DisplayDirection
///
[Display(Name = "DisplayDirection"), Description("DisplayDirection"), MaxLength(100, ErrorMessage = "DisplayDirection 不能超过 100 个字符")]
public string DisplayDirection { get; set; }
///
/// DeptColor
///
[Display(Name = "DeptColor"), Description("DeptColor"), MaxLength(100, ErrorMessage = "DeptColor 不能超过 100 个字符")]
public string DeptColor { get; set; }
///
/// DeptIcon
///
[Display(Name = "DeptIcon"), Description("DeptIcon"), MaxLength(100, ErrorMessage = "DeptIcon 不能超过 100 个字符")]
public string DeptIcon { get; set; }
///
/// ShortName
///
[Display(Name = "ShortName"), Description("ShortName"), MaxLength(200, ErrorMessage = "ShortName 不能超过 200 个字符")]
public string ShortName { get; set; }
///
/// DeptDataType
///
[Display(Name = "DeptDataType"), Description("DeptDataType"), MaxLength(100, ErrorMessage = "DeptDataType 不能超过 100 个字符")]
public string DeptDataType { get; set; }
}
}