1. 新增AutoDotCodeConsumer自动铺码消费者,实现统一的交换机路由绑定 2. 重构RabbitMQ接收方法,支持交换机、路由键配置,添加死信队列处理 3. 重构现有JournalTaskReceiveConsumer,使用标准交换机路由配置 4. 更新JournalPageService,将打印逻辑替换为自动铺码消息发送 5. 调整枚举类型,重构任务类型命名 6. 更新实体和DTO,新增Prompt相关字段 7. 添加PrintToolV2.7配套工具和文档 8. 清理冗余的PrintJournalPageAsync接口
27 lines
678 B
C#
27 lines
678 B
C#
|
|
|
|
using QYZH.InteractiveMagazine.Models.Dto.Journal;
|
|
using QYZH.InteractiveMagazine.Models.Entity;
|
|
|
|
namespace QYZH.InteractiveMagazine.IService;
|
|
|
|
public interface IJournalPageService: IBaseService<JournalPage>
|
|
{
|
|
Task<long> InsertAsync(JournalAddV2Input input);
|
|
|
|
Task<bool> UpdateAsync(PageLayoutInput input);
|
|
|
|
/// <summary>
|
|
/// 修改书页的点阵码
|
|
/// </summary>
|
|
/// <param name="JournalId"></param>
|
|
/// <returns></returns>
|
|
Task<bool> UpdatePageNoAsync(long JournalId);
|
|
|
|
|
|
Task<JournalPageV2Output> DetailAsync(long id);
|
|
Task<bool> DeleteAsync(long id);
|
|
|
|
//Task<List<JournalPageNoArticleOutput>> PageNoArticleAsync(long id);
|
|
}
|