64 lines
1.7 KiB
C#
64 lines
1.7 KiB
C#
|
/*
|
|||
|
*代码由框架生成,任何更改都可能导致被代码生成器覆盖
|
|||
|
*如果数据库字段发生变化,请在代码生器重新生成此Model
|
|||
|
*/
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.ComponentModel.DataAnnotations;
|
|||
|
using System.ComponentModel.DataAnnotations.Schema;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using SqlSugar;
|
|||
|
using VOL.Entity.SystemModels;
|
|||
|
|
|||
|
namespace VOL.Entity.DomainModels
|
|||
|
{
|
|||
|
[Entity(TableCnName = "部门信息同步",TableName = "HR_DeptSync")]
|
|||
|
public partial class HR_DeptSync:BaseEntity
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
///同步ID
|
|||
|
/// </summary>
|
|||
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
|
|||
|
[Key]
|
|||
|
[Display(Name ="同步ID")]
|
|||
|
[Column(TypeName="int")]
|
|||
|
[Required(AllowEmptyStrings=false)]
|
|||
|
public int DeptSyncId { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
///YS部门ID
|
|||
|
/// </summary>
|
|||
|
[Display(Name ="YS部门ID")]
|
|||
|
[MaxLength(100)]
|
|||
|
[Column(TypeName="nvarchar(100)")]
|
|||
|
public string YSDeptId { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
///YS部门名称
|
|||
|
/// </summary>
|
|||
|
[Display(Name ="YS部门名称")]
|
|||
|
[MaxLength(100)]
|
|||
|
[Column(TypeName="nvarchar(100)")]
|
|||
|
public string YSDeptName { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
///钉钉部门ID
|
|||
|
/// </summary>
|
|||
|
[Display(Name ="钉钉部门ID")]
|
|||
|
[MaxLength(100)]
|
|||
|
[Column(TypeName="nvarchar(100)")]
|
|||
|
public string DingTalkDeptId { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
///钉钉部门名称
|
|||
|
/// </summary>
|
|||
|
[Display(Name ="钉钉部门名称")]
|
|||
|
[MaxLength(100)]
|
|||
|
[Column(TypeName="nvarchar(100)")]
|
|||
|
public string DingTalkDeptName { get; set; }
|
|||
|
|
|||
|
|
|||
|
}
|
|||
|
}
|