using System; using System.Collections.Generic; using System.Threading.Tasks; 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 IShiftRuleService { /// /// 根据ID获取班次规则详细信息 /// /// 规则ID /// 班次规则详细信息 Task GetAsync(long id); /// /// 获取班次规则分页列表 /// /// 查询条件 /// 分页结果 Task> GetPageAsync(PageInput input); }