namespace Admin.Core.Repository.Personnel.Output { /// /// 岗位导出 /// public partial class PositionDataOutput { /// /// 租户Id /// public long? TenantId { get; set; } /// /// 用户Id /// public long Id { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 编码 /// public string Code { get; set; } /// /// 说明 /// public string Description { get; set; } /// /// 启用 /// public bool Enabled { get; set; } /// /// 排序 /// public int Sort { get; set; } } }