AuthScopeLocationOptionDto.cs 784 Bytes
namespace FoodLabeling.Application.Contracts.Dtos.AuthScope;

/// <summary>
/// 选定 Company + Region 后的门店(<c>location</c>)下拉项。
/// </summary>
public class AuthScopeLocationOptionDto
{
    /// <summary>门店 Id(Guid 字符串)</summary>
    public string Id { get; set; } = string.Empty;

    public string LocationCode { get; set; } = string.Empty;

    public string LocationName { get; set; } = string.Empty;

    /// <summary>拼接地址(无数据时为「无」)</summary>
    public string FullAddress { get; set; } = string.Empty;

    public bool State { get; set; }

    public string PartnerId { get; set; } = string.Empty;

    public string GroupId { get; set; } = string.Empty;

    public string GroupName { get; set; } = string.Empty;
}