74 lines
1.9 KiB
C#
74 lines
1.9 KiB
C#
|
||
using System;
|
||
using System.Collections.Generic;
|
||
using System.Text;
|
||
using WMS.Web.Core.Help;
|
||
|
||
namespace WMS.Web.Core.Dto
|
||
{
|
||
/// <summary>
|
||
/// 上传下载列表
|
||
/// </summary>
|
||
public class FileDownManagerResponse
|
||
{
|
||
public FileDownManagerResponse(List<FileDownInfoManagerResponse> list, int? total)
|
||
{
|
||
this.List = list;
|
||
this.Total = total;
|
||
}
|
||
|
||
/// <summary>
|
||
/// 查询列表内容
|
||
/// </summary>
|
||
public List<FileDownInfoManagerResponse> List { get; set; } = new List<FileDownInfoManagerResponse>();
|
||
/// <summary>
|
||
/// 总条数
|
||
/// </summary>
|
||
public int? Total { get; set; }
|
||
}
|
||
|
||
/// <summary>
|
||
/// 上传下载列表
|
||
/// </summary>
|
||
public class FileDownInfoManagerResponse
|
||
{
|
||
public FileDownInfoManagerResponse() { }
|
||
public FileDownInfoManagerResponse(FileDownInfoManagerResponse response)
|
||
{
|
||
response.CopyPropertiesToD(this);
|
||
}
|
||
/// <summary>
|
||
/// 主键 订单编号
|
||
/// </summary>
|
||
public int Id { get; set; }
|
||
/// <summary>
|
||
/// 日期
|
||
/// </summary>
|
||
public string Date { get; set; }
|
||
/// <summary>
|
||
/// 单据类型(任务类型)
|
||
/// </summary>
|
||
public int Type { get; set; }
|
||
/// <summary>
|
||
/// 状态(Key)
|
||
/// </summary>
|
||
public int StatusKey { get; set; }
|
||
/// <summary>
|
||
/// 状态
|
||
/// </summary>
|
||
public string Status { get; set; }
|
||
/// <summary>
|
||
/// 文件地址
|
||
/// </summary>
|
||
public string FilePath { get; set; }
|
||
/// <summary>
|
||
/// 操作人
|
||
/// </summary>
|
||
public string UserName { get; set; }
|
||
/// <summary>
|
||
/// 失败原因
|
||
/// </summary>
|
||
public string Reason { get; set; }
|
||
}
|
||
}
|