59e51671
“wangming”
1
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
namespace FoodLabeling.Application.Contracts.Dtos.Group;
/// <summary>
/// 组织详情
/// </summary>
public class GroupGetOutputDto
{
public string Id { get; set; } = string.Empty;
public string GroupName { get; set; } = string.Empty;
public string PartnerId { get; set; } = string.Empty;
public string PartnerName { get; set; } = string.Empty;
public bool State { get; set; }
public DateTime CreationTime { get; set; }
public DateTime? LastModificationTime { get; set; }
}
|