添加项目文件。
This commit is contained in:
@@ -0,0 +1,51 @@
|
||||
using JNPF.DependencyInjection;
|
||||
|
||||
namespace JNPF.Extend.Entitys.Dto.DocumentPreview;
|
||||
|
||||
/// <summary>
|
||||
/// 预览文档.
|
||||
/// </summary>
|
||||
[SuppressSniffer]
|
||||
public class DocumentPreviewPreviewInput
|
||||
{
|
||||
/// <summary>
|
||||
/// 文件id.
|
||||
/// </summary>
|
||||
public string? fileId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 是否强制重新转换(忽略缓存),true为强制重新转换,false为不强制重新转换.
|
||||
/// </summary>
|
||||
public bool noCache { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 针对单文档设置水印内容.
|
||||
/// </summary>
|
||||
public string? watermark { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 0否1是,默认为0。针对单文档设置是否防复制.
|
||||
/// </summary>
|
||||
public int isCopy{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 开始位置.
|
||||
/// </summary>
|
||||
public string? pageStart { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 结束位置.
|
||||
/// </summary>
|
||||
public string? pageEnd { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 类型.
|
||||
/// </summary>
|
||||
public string? type { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 预览方式(localPreview:本地,yozoOnlinePreview:在线).
|
||||
/// </summary>
|
||||
public string? previewType { get; set; }
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user