using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ZhongLianModel
{
///
/// 组实体类
///
[SugarTable("AT_Group_zl")]
public class GroupDO
{
///
/// 唯一键
///
[SugarColumn(IsPrimaryKey = true, Length = 64)]
public string? Id { get; set; }
///
/// 父键
///
[SugarColumn(Length = 64,IsNullable = true)]
public string? PId { get; set; }
///
/// 编号
///
[SugarColumn(Length = 50, IsNullable = true)]
public string? Code { get; set; }
///
/// 系统
///
[SugarColumn(IsIgnore = true, IsNullable = true)]
public string? System { get; set; }
///
/// 名称
///
[SugarColumn(Length = 250, IsNullable = true)]
public string? Name { get; set; }
///
/// 类型{0:组织结构}
///
[SugarColumn(Length = 2, IsNullable = true)]
public int? Type { get; set; }
///
/// 创建日期
///
[SugarColumn(Length = 24, IsNullable = true)]
public string? CreateDate { get; set; }
///
/// 删除标识
///
[SugarColumn(Length = 1, IsNullable = true)]
public int? Deleted { get; set; }
}
}