49755ef0
李曜臣
6-12代码优化
|
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
|
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;
}
|