using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DS.WMS.Core.TaskPlat.Dtos
{
///
///
///
public class TaskManageOrderPerBillInfo
{
///
/// 主单号
///
public string MBLNo { get; set; }
///
/// 合计金额
///
public decimal TotalAmount { get; set; }
///
/// 发票号
///
public string InvoiceNo { get; set; }
///
/// 取消号
///
public string CancelNo { get; set; }
///
/// 是否东胜接收 1-是 0-否
///
public int IsDongshengRecv { get; set; } = 0;
///
/// 是否东胜接收回执 1-是 0-否
///
public int IsDongshengResult { get; set; } = 0;
///
/// 东胜接收时间
///
public string DongshengRecvTime { get; set; }
///
/// 东胜回执时间
///
public string DongshengResultTime { get; set; }
///
/// 东胜反馈原因
///
public string DongshengRecvReason { get; set; }
///
/// 费用明细
///
public List FeeList { get; set; }
}
}