namespace FoodLabeling.Application.Contracts.Dtos.TeamMember; public class TeamMemberGetOutputDto { public Guid Id { get; set; } public string FullName { get; set; } = string.Empty; public string UserName { get; set; } = string.Empty; public string? Email { get; set; } public long? Phone { get; set; } public bool State { get; set; } public Guid? RoleId { get; set; } /// 适用 Company Id(多选,由绑定门店反推) public List PartnerIds { get; set; } = new(); /// 适用 Region Id(多选,fl_group.Id;覆盖该公司全部 Region 时回显 ["ALL"] public List RegionIds { get; set; } = new(); /// 相同 public List GroupIds { get; set; } = new(); /// 绑定门店 Id;覆盖该公司全部门店时回显 ["ALL"](库中仍存展开 Guid) public List LocationIds { get; set; } = new(); public List AssignedLocations { get; set; } = new(); }