namespace FoodLabeling.Application.Contracts.Dtos.Group; /// /// 组织详情 /// 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; } }