using System; using System.Collections.Generic; using System.Threading.Tasks; using Volo.Abp.Domain.Services; namespace Win_in.Sfs.Label.Domain; public interface ILabelDefinitionManager : IDomainService { Task GetByTypeAsync(string labelType); Task GenerateAsync(string labelType, DateTime time); Task> GenerateManyAsync(string labelType, DateTime time, int count); }