dc/Common/Entity/DownLoadFileParam.cs

48 lines
1.2 KiB
C#
Raw Normal View History

2022-04-01 17:03:54 +08:00
#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;
}
}
}