using System; using System.Collections.Generic; using System.Linq; using System.Text.Json.Serialization; using SqlSugar; namespace Yi.Framework.Model.Models { /// /// 部门表 /// [SugarTable("Dept")] public partial class DeptEntity:IBaseModelEntity { public DeptEntity() { this.CreateTime = DateTime.Now; } [JsonConverter(typeof(ValueToStringConverter))] [SugarColumn(ColumnName="Id" ,IsPrimaryKey = true )] public long Id { get; set; } /// /// 部门名称 /// [SugarColumn(ColumnName="DeptName" )] public string? DeptName { get; set; } /// /// 部门编码 /// [SugarColumn(ColumnName="DeptCode" )] public string? DeptCode { get; set; } /// /// 负责人 /// [SugarColumn(ColumnName="Leader" )] public string? Leader { get; set; } /// /// 父级id /// [SugarColumn(ColumnName="ParentId" )] public long? ParentId { get; set; } /// /// 创建者 /// [SugarColumn(ColumnName="CreateUser" )] public long? CreateUser { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnName="CreateTime" )] public DateTime? CreateTime { get; set; } /// /// 修改者 /// [SugarColumn(ColumnName="ModifyUser" )] public long? ModifyUser { get; set; } /// /// 修改时间 /// [SugarColumn(ColumnName="ModifyTime" )] public DateTime? ModifyTime { get; set; } /// /// 是否删除 /// [SugarColumn(ColumnName="IsDeleted" )] public bool? IsDeleted { get; set; } /// /// 租户Id /// [SugarColumn(ColumnName="TenantId" )] public long? TenantId { get; set; } /// /// 排序字段 /// [SugarColumn(ColumnName="OrderNum" )] public int? OrderNum { get; set; } /// /// 描述 /// [SugarColumn(ColumnName="Remark" )] public string? Remark { get; set; } } }