You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Ksat.Supplyment.Library.Model.Uploader
|
|
|
|
|
{
|
|
|
|
|
public class UploadModel<T>
|
|
|
|
|
{
|
|
|
|
|
public DateTime CreateAt;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 最后一次上传时间
|
|
|
|
|
/// </summary>
|
|
|
|
|
public DateTime RetryAt;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 尝试次数
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int RetryCount;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 错误信息
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string ErrorInfo;
|
|
|
|
|
|
|
|
|
|
public string Tag;
|
|
|
|
|
|
|
|
|
|
public T Request;
|
|
|
|
|
}
|
|
|
|
|
}
|