using System;
using System.Collections.Generic;
namespace DAL.New_Models;
public partial class TbSysDistrict
{
public int Id { get; set; }
///
/// 代码
///
public string Code { get; set; } = null!;
///
/// 名称
///
public string Name { get; set; } = null!;
///
/// 排序
///
public int Sort { get; set; }
///
/// 备注
///
public string? Remark { get; set; }
///
/// 上级部门
///
public int? ParentId { get; set; }
///
/// 启用
///
public bool ActiveIndicator { get; set; }
///
/// 创建人
///
public string CreatedBy { get; set; } = null!;
///
/// 创建时间
///
public DateTime CreatedDate { get; set; }
///
/// 修改人
///
public string ModifiedBy { get; set; } = null!;
///
/// 修改时间
///
public DateTime ModifiedDate { get; set; }
public virtual ICollection TbSysUsers { get; set; } = new List();
}