using FoodLabeling.Application.Contracts.Dtos.Common;
using FoodLabeling.Application.Contracts.Dtos.LabelAlertTimer;
using Volo.Abp.Application.Services;
namespace FoodLabeling.Application.Contracts.IServices;
///
/// 标签告警计时器(App)
///
public interface ILabelAlertTimerAppService : IApplicationService
{
Task> GetListAsync(LabelAlertTimerGetListInputVo input);
///
/// App:当前账号当前门店告警列表(含倒计时;locationId 可省略,走已选门店缓存)
///
Task> GetAppListAsync(LabelAlertTimerGetListInputVo input);
Task DeleteAsync(string id);
Task CheckExpiredAsync(LabelAlertTimerCheckExpiredInputVo input);
}