using FoodLabeling.Application.Contracts.Dtos.Common; using FoodLabeling.Application.Contracts.Dtos.UsAppLabeling; using Volo.Abp.Application.Services; namespace FoodLabeling.Application.Contracts.IServices; /// /// App Labeling:四级列表(标签分类 → 产品分类 → 产品 → 标签种类) /// public interface IUsAppLabelingAppService : IApplicationService { /// /// 获取当前门店下四级嵌套树,供移动端 Labeling 首页使用 /// Task> GetLabelingTreeAsync(UsAppLabelingTreeInputVo input); /// /// App 打印预览:按标签编码解析模板并返回顶部展示字段 + 预览模板结构 /// Task PreviewAsync(UsAppLabelPreviewInputVo input); /// /// App 打印:创建打印任务并落库打印明细(fl_label_print_task / fl_label_print_data) /// Task PrintAsync(UsAppLabelPrintInputVo input); /// /// App 重新打印:根据历史任务Id重打(创建新任务与明细) /// Task ReprintAsync(UsAppLabelReprintInputVo input); /// /// App 打印日志:获取当前登录账号在当前门店打印的记录(分页,时间倒序) /// Task> GetPrintLogListAsync(PrintLogGetListInputVo input); }