using JNPF.DependencyInjection; namespace JNPF.Systems.Entitys.Dto.UsersCurrent; /// /// 个人资料下属输出. /// [SuppressSniffer] public class UsersCurrentSubordinateOutput { /// /// 用户id. /// public string id { get; set; } /// /// 头像地址. /// public string avatar { get; set; } /// /// 用户名称. /// public string userName { get; set; } /// /// 部门. /// public string department { get; set; } /// /// 岗位. /// public string position { get; set; } /// /// 是否有下级. /// public bool isLeaf { get; set; } }