namespace OASystem.Domain.Entities.System
{
///
/// 部门表
///
[SugarTable("Sys_Department")]
public class Sys_Department: EntityBase
{
///
/// 公司Id
///
[SugarColumn(IsNullable =true,ColumnDataType ="int")]
public int CompanyId { get; set; }
///
/// 部门code
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(20)")]
public string DepCode { get; set; }
///
/// 部门名称
///
[SugarColumn(IsNullable = true, ColumnDataType = "varchar(50)")]
public string DepName { get; set; }
///
/// 父级部门Id
///
[SugarColumn(IsNullable = true, ColumnDataType = "int")]
public int ParentDepId { get; set; }
}
}