refactor(work-service): 重构自动铺码消费者,新增微信登录逻辑与配置更新
1. 更新微信公众号配置AppId和AppSecret 2. 修复微信授权控制器临时返回逻辑,启用真实登录流程 3. 新增期刊打印DTO类,定义铺码数据结构 4. 重构AutoDotCodeConsumer,新增依赖注入与完整铺码业务逻辑 5. 调整队列消费者接口与实现,添加取消令牌参数 6. 新增铺码回调响应实体类,完善异常处理与事务管理
This commit is contained in:
@ -0,0 +1,42 @@
|
||||
using QYZH.InteractiveMagazine.Models.Enum;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace QYZH.InteractiveMagazine.Models.Dto.Journal
|
||||
{
|
||||
public class JournalPagePrintDto
|
||||
{
|
||||
/// <summary>
|
||||
/// 书Id
|
||||
/// </summary>
|
||||
public long JournalId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 状态
|
||||
/// </summary>
|
||||
public JournalStatusEnum? Status { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 书PDF URL(这里带有 OSS 域名 https://oss.qyzhjy.com/)
|
||||
/// </summary>
|
||||
public string? JournalPdfUrl { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 页码数组
|
||||
/// </summary>
|
||||
public int[] PageNum { get; set; } = [];
|
||||
|
||||
/// <summary>
|
||||
/// 点阵码打印页面数组
|
||||
/// </summary>
|
||||
public string[] PageNo { get; set; } = [];
|
||||
|
||||
/// <summary>
|
||||
/// 下载书页PDF的文件名,铺码程序已经添加好(这里带有 OSS 域名 https://oss.qyzhjy.com/)
|
||||
/// </summary>
|
||||
public string? DownloadJournalPagePdfName { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user