using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application
{
///
///
///
public class TaskInvoiceBillFileHis
{
///
/// 主键
///
public string PKId { get; set; }
///
/// 任务主键
///
public string TaskPKId { get; set; }
///
/// 主单号
///
public string MBLNo { get; set; }
///
/// 文件路径s
///
public string FilePath { get; set; }
///
/// 创建时间
///
public DateTime CreatedTime { get; set; }
///
/// 发送人ID
///
public Nullable SendUserId { get; set; }
///
/// 发送人名称
///
public string SendUserName { get; set; }
///
/// 发送时间
///
public Nullable SendTime { get; set; }
///
/// 状态
///
public string Stuats { get; set; }
///
/// 状态名称
///
public string StuatsName { get; set; }
///
/// 发送结果
///
public string SendResult { get; set; }
}
}