Files
glz 16ad80f2a8 refactor(work-service): 重构自动铺码消费者,新增微信登录逻辑与配置更新
1. 更新微信公众号配置AppId和AppSecret
2. 修复微信授权控制器临时返回逻辑,启用真实登录流程
3. 新增期刊打印DTO类,定义铺码数据结构
4. 重构AutoDotCodeConsumer,新增依赖注入与完整铺码业务逻辑
5. 调整队列消费者接口与实现,添加取消令牌参数
6. 新增铺码回调响应实体类,完善异常处理与事务管理
2026-06-23 16:53:18 +08:00

43 lines
1.1 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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; }
}
}