namespace FoodLabeling.Application.Contracts.Dtos.Group; /// /// 新建组织入参 /// public class GroupCreateInputVo { public string GroupName { get; set; } = string.Empty; /// /// 指派到的合作伙伴 Id(Assign to Partner) /// public string PartnerId { get; set; } = string.Empty; public bool State { get; set; } = true; }