UsAppBoundLocationDto.cs
719 Bytes
namespace FoodLabeling.Application.Contracts.Dtos.UsAppAuth;
/// <summary>
/// App 端展示的绑定门店信息
/// </summary>
public class UsAppBoundLocationDto
{
/// <summary>门店主键 Id(Guid 字符串)</summary>
public string Id { get; set; } = string.Empty;
/// <summary>业务编码,如 LOC-1</summary>
public string LocationCode { get; set; } = string.Empty;
/// <summary>门店名称</summary>
public string LocationName { get; set; } = string.Empty;
/// <summary>拼接后的完整地址,便于移动端展示</summary>
public string FullAddress { get; set; } = string.Empty;
/// <summary>门店是否启用</summary>
public bool State { get; set; }
}