using System;
namespace XYY.Service.JobManage
{
public class ExpressFeechargesModel
{
public bool Bookkeeping
{
get; set;
}
///
/// 客户
///
public int CustomerId
{
get; set;
}
public double BillingWeight
{
get; set;
}
///
/// 冲减帐目
///
public bool Offset
{
get; set;
}
///
/// 业务号码
///
public string BillNo
{
get; set;
}
///
/// 计费单号
///
public string AccountingNo
{
get; set;
}
///
/// 单据类型
///
public string BillType
{
get; set;
}
///
/// 卖家订单号
///
public string ClientOrderNo
{
get; set;
}
///
/// 记账日期
///
public DateTime? AccountingDate
{
get; set;
}
///
/// 价格版本号
///
public long? PriceVersion
{
get; set;
}
///
/// 交易类型
///
public int TransactionType
{
get; set;
}
///
/// 交易号
///
public string TransactionNo
{
get; set;
}
///
/// 费用名称
///
public string ChargeName
{
get; set;
}
///
/// 交易时间
///
public DateTime TransactionTime
{
get; set;
}
///
/// 收入/支出
///
public string IncomeOrESxpense
{
get; set;
}
///
/// 币种
///
public string Currency
{
get; set;
}
///
/// 金额
///
public double AmountinOriginalCurrency
{
get; set;
}
///
/// 结算币种
///
public string SettlementCurrency
{
get; set;
}
///
/// 结算汇率
///
public double SettlementRate
{
get; set;
}
///
/// 结算金额
///
public double SettlementAmount
{
get; set;
}
///
/// 费用说明
///
public string FeeDescription
{
get; set;
}
///
/// 结算完成
///
public bool SettlementCompleted
{
get; set;
}
public string ZipCode
{
get; set;
}
public bool HasIOSS
{
get; set;
}
public string GoodsDeclaredCurreny
{
get; set;
}
public bool IsOnline
{
get; set;
}
public bool IsResidential
{
get; set;
}
public decimal Width
{
get; set;
}
public decimal Height
{
get; set;
}
public decimal Length
{
get; set;
}
public int ExpressId
{
get; set;
}
public int PublicExpressId
{
get; set;
}
public string CountryCode
{
get; set;
}
public double GoodsDeclared
{
get; set;
}
public int OrderId
{
get; set;
}
public string TrackingNumber
{
get; set;
}
public int? BranchCompanyCustomerId { get; set; }
///
/// 计费对象是否是分公司
///
public bool IsChargeBranchCompany { get; set; }
}
}