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