You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.4 KiB
61 lines
1.4 KiB
5 days ago
|
namespace Admin.NET.Core;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 系统机构表
|
||
|
/// </summary>
|
||
|
[SugarTable(null, "系统机构表")]
|
||
|
[SystemTable]
|
||
|
public class SysOrg : EntityTenant
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 父Id
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnDescription = "父Id")]
|
||
|
public long Pid { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 名称
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnDescription = "名称", Length = 64)]
|
||
|
[Required, MaxLength(64)]
|
||
|
public virtual string Name { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 编码
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnDescription = "编码", Length = 64)]
|
||
|
[MaxLength(64)]
|
||
|
public string? Code { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 机构类型
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnDescription = "机构类型", Length = 64)]
|
||
|
[MaxLength(64)]
|
||
|
public string? OrgType { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 排序
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnDescription = "排序")]
|
||
|
public int OrderNo { get; set; } = 100;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 备注
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnDescription = "备注", Length = 128)]
|
||
|
[MaxLength(128)]
|
||
|
public string? Remark { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 状态
|
||
|
/// </summary>
|
||
|
[SugarColumn(ColumnDescription = "状态")]
|
||
|
public StatusEnum Status { get; set; } = StatusEnum.Enable;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 机构子项
|
||
|
/// </summary>
|
||
|
[SugarColumn(IsIgnore = true)]
|
||
|
public List<SysOrg> Children { get; set; }
|
||
|
}
|