using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application
{
///
/// 费用明细
///
public class TaskManageOrderFeeInfo
{
///
/// 顺序号
///
public int SortNo { get; set; }
///
/// 费用代码
///
public string FeeCode { get; set; }
///
/// 费用名称
///
public string FeeName { get; set; }
///
/// 费用金额
///
public decimal Amount { get; set; }
///
/// 费用金额(美金)
///
public decimal AmountUSD { get; set; }
///
/// 币制
///
public string Currency { get; set; }
///
/// S20
///
public int S20 { get; set; }
///
/// S40
///
public int S40 { get; set; }
///
/// S45
///
public int S45 { get; set; }
///
/// 箱型
///
public string Ctnall { get; set; }
///
/// 数量
///
public int Qty { get; set; }
///
/// 单位
///
public string Unit { get; set; }
///
/// 税率类型
///
public string TaxType { get; set; }
///
/// 税率
///
public decimal? Rate { get; set; }
///
/// 合计金额
///
public decimal TotalAmount { get; set; }
///
/// 是否东胜接收 1-是 0-否
///
public int IsDongSheng { get; set; }
}
}