12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- 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;
- }
- /// <summary>
- /// 是否即时扣费
- /// </summary>
- public bool Bookkeeping
- {
- get; set;
- }
- public string TrackingNumber
- {
- get; set;
- }
- public int? BranchCompanyCustomerId { get; set; }
- /// <summary>
- /// 计费对象是否是分公司
- /// </summary>
- public bool IsChargeBranchCompany { get; set; }
- /// <summary>
- /// 渠道编号
- /// </summary>
- public string Publiccode { get; set; }
- }
- }
|