AuthScopeSelectLocationInputVo.cs
602 Bytes
namespace FoodLabeling.Application.Contracts.Dtos.AuthScope;
/// <summary>
/// 确认当前工作门店(选完 Company → Region → Location 后提交)。
/// </summary>
public class AuthScopeSelectLocationInputVo
{
/// <summary>公司 Id(<c>fl_partner.Id</c>)</summary>
public string PartnerId { get; set; } = string.Empty;
/// <summary>Region Id(<c>fl_group.Id</c>)</summary>
public string GroupId { get; set; } = string.Empty;
/// <summary>门店 Id(<c>location.Id</c>,Guid 字符串)</summary>
public string LocationId { get; set; } = string.Empty;
}