using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace XYY.Model.Standard.FeeCount { public class ExpressFeechargesModel: Finance_ChargesDetail { 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 bool Bookkeeping { get; set; } public string TrackingNumber { get; set; } public int? BranchCompanyCustomerId { get; set; } /// /// 计费对象是否是分公司 /// public bool IsChargeBranchCompany { get; set; } /// /// 渠道编号 /// public string Publiccode { get; set; } } }