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; }
///
/// 适用 Company(fl_partner.Id);与 合并
///
public string? PartnerId { get; set; }
///
/// 适用 Company 多选(fl_partner.Id)
///
public List? PartnerIds { get; set; }
///
/// 适用 Region 多选(fl_group.Id);可含 ALL 哨兵(大小写不敏感,与具体 Guid 同传时以 ALL 为准)。
///
public List? RegionIds { get; set; }
///
/// 适用 Region 多选(与 相同);可含 ALL。
///
public List? GroupIds { get; set; }
///
/// 适用门店多选(location.Id);可含 ALL 哨兵,按 Company 展开全部门店落库。
///
public List? LocationIds { get; set; }
///
/// 适用门店多选别名(与 合并解析);可含 ALL 或门店 Guid。
///
public List? Locations { get; set; }
public bool State { get; set; } = true;
}