namespace FoodLabeling.Application.Contracts.Dtos.TeamMember; public class TeamMemberUpdateInputVo { public string FullName { get; set; } = string.Empty; public string UserName { get; set; } = string.Empty; /// /// 为空表示不改密码 /// public string? Password { get; set; } public string? Email { get; set; } public long? Phone { get; set; } public Guid? RoleId { get; set; } public List LocationIds { get; set; } = new(); public bool State { get; set; } = true; }