43 lines
1.1 KiB
C#
43 lines
1.1 KiB
C#
|
|
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; }
|
|||
|
|
}
|
|||
|
|
}
|