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