59e51671
“wangming”
1
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
namespace FoodLabeling.Application.Contracts.Dtos.UsAppAuth;
/// <summary>
/// App「Location」门店详情(与原型字段对齐)
/// </summary>
public class UsAppLocationDetailOutputDto
{
/// <summary>门店主键(Guid 字符串)</summary>
public string LocationId { get; set; } = string.Empty;
/// <summary>门店名称</summary>
public string LocationName { get; set; } = string.Empty;
/// <summary>完整地址(街道、城市、州、邮编拼接;无则为「无」)</summary>
public string FullAddress { get; set; } = string.Empty;
/// <summary>门店电话(来自 location.Phone;空为「无」)</summary>
public string StorePhone { get; set; } = string.Empty;
/// <summary>经营时间(<c>location.OperatingHours</c> 自由文本);库空或未维护时为「无」</summary>
public string OperatingHours { get; set; } = string.Empty;
/// <summary>店长姓名;优先取绑定本店且角色名/编码含 manager 的用户</summary>
public string ManagerName { get; set; } = string.Empty;
/// <summary>店长电话;同上用户 User.Phone 格式化;无则为「无」</summary>
public string ManagerPhone { get; set; } = string.Empty;
}
|