using System.Threading.Tasks; using System.Collections.Generic; using ZhonTai.Admin.Core.Dto; using NPP.SmartSchedue.Api.Contracts.Services.Time.Input; using NPP.SmartSchedue.Api.Contracts.Services.Time.Output; namespace NPP.SmartSchedue.Api.Contracts.Services.Time; /// /// 基础日历服务接口 /// public interface ICalendarService { Task GetAsync(long id); Task> GetPageAsync(PageInput input); Task AddAsync(CalendarAddInput input); Task UpdateAsync(CalendarUpdateInput input); Task DeleteAsync(long id); Task SoftDeleteAsync(long id); Task BatchSoftDeleteAsync(long[] ids); }