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