using QYZH.InteractiveMagazine.Common.Helpers;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace QYZH.InteractiveMagazine.Models.Dto.DotMatrix
{
public class DotMatrixOutput
{
///
/// 方法
///
public string Method { get; set; }
///
/// 名称
///
public string Name { get; set; }
///
/// id
///
public long NoteId { get; set; }
private string _pdfUrl;
///
/// pdf地址
///
public string PdfUrl
{
get => DomainHelper.OssFullUrl(_pdfUrl);
set => _pdfUrl = value;
}
public List DotMatrixs { get; set; } = new List();
}
public class DotMatrixMqOutput
{
public long DotId { get; set; }
private string _fileAddress;
///
/// 点阵xml地址
///
public string FileAddress
{
get => DomainHelper.OssFullUrl(_fileAddress);
set => _fileAddress = value;
}
///
/// 页
///
public List Pages { get; set; } = new List();
}
public class DotMatrixPageDto
{
///
/// 页码
///
public string PageNo { get; set; }
///
/// 连续数量
///
public int PageNum { get; set; }
}
}