namespace FoodLabeling.Application.Contracts.Dtos.TeamMember; public class TeamMemberCreateInputVo { public string FullName { get; set; } = string.Empty; /// /// 登录账号(建议用邮箱或自定义用户名) /// public string UserName { get; set; } = string.Empty; public string Password { get; set; } = string.Empty; public string? Email { get; set; } public long? Phone { get; set; } public Guid? RoleId { get; set; } /// /// 关联门店(至少1个) /// public List LocationIds { get; set; } = new(); public bool State { get; set; } = true; }