namespace FoodLabeling.Application.Contracts.Dtos.UsAppAuth; /// /// App「Location」门店详情(与原型字段对齐) /// public class UsAppLocationDetailOutputDto { /// 门店主键(Guid 字符串) public string LocationId { get; set; } = string.Empty; /// 门店名称 public string LocationName { get; set; } = string.Empty; /// 完整地址(街道、城市、州、邮编拼接;无则为「无」) public string FullAddress { get; set; } = string.Empty; /// 门店电话(来自 location.Phone;空为「无」) public string StorePhone { get; set; } = string.Empty; /// 经营时间(location.OperatingHours 自由文本);库空或未维护时为「无」 public string OperatingHours { get; set; } = string.Empty; /// 店长姓名;优先取绑定本店且角色名/编码含 manager 的用户 public string ManagerName { get; set; } = string.Empty; /// 店长电话;同上用户 User.Phone 格式化;无则为「无」 public string ManagerPhone { get; set; } = string.Empty; }