using System;
using System.Collections.Generic;
namespace DAL.New_Models;
public partial class TbSysPosition
{
public int Id { get; set; }
public string? Code { get; set; }
///
/// 名称
///
public string Name { get; set; } = null!;
///
/// 排序
///
public int Sort { get; set; }
///
/// 备注
///
public string? Remark { 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; }
}