EAP
This commit is contained in:
48
Common/Entity/DownLoadFileParam.cs
Normal file
48
Common/Entity/DownLoadFileParam.cs
Normal file
@@ -0,0 +1,48 @@
|
||||
#region << 版 本 注 释 >>
|
||||
/*----------------------------------------------------------------
|
||||
* 创建者:13118
|
||||
* 创建时间:2022/3/28 13:48:16
|
||||
* 版本:V1.0.0
|
||||
* 描述:
|
||||
*
|
||||
* ----------------------------------------------------------------
|
||||
* 修改人:
|
||||
* 时间:
|
||||
* 修改说明:
|
||||
*
|
||||
* 版本:V1.0.1
|
||||
*----------------------------------------------------------------*/
|
||||
#endregion << 版 本 注 释 >>
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
|
||||
namespace ARI.EAP.HOST.Common.Entity
|
||||
{
|
||||
/// <summary>
|
||||
/// 下载文件接口传参实体类
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
public class DownLoadFileParam
|
||||
{
|
||||
public long attachmentId { get; set; }
|
||||
|
||||
public string fileName { get; set; }
|
||||
|
||||
public string type { get; set; }
|
||||
|
||||
//
|
||||
// 摘要:
|
||||
// downloadType:下载方式,"0"为预览,"1"为下载
|
||||
public DownLoadFileParam(long fileId, string fileName,string downloadType)
|
||||
{
|
||||
this.attachmentId = fileId;
|
||||
this.fileName = fileName;
|
||||
this.type = downloadType;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user