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 public List RegionIds { get; set; } = new(); /// 相同 public List GroupIds { get; set; } = new(); public List LocationIds { get; set; } = new(); public List AssignedLocations { get; set; } = new(); }