ExpressFeechargesModel.cs 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace XYY.Model.Standard.FeeCount
  7. {
  8. public class ExpressFeechargesModel: Finance_ChargesDetail
  9. {
  10. public bool IsOnline
  11. {
  12. get; set;
  13. }
  14. public bool IsResidential
  15. {
  16. get; set;
  17. }
  18. public decimal Width
  19. {
  20. get; set;
  21. }
  22. public decimal Height
  23. {
  24. get; set;
  25. }
  26. public decimal Length
  27. {
  28. get; set;
  29. }
  30. public int ExpressId
  31. {
  32. get; set;
  33. }
  34. public int PublicExpressId
  35. {
  36. get; set;
  37. }
  38. public string CountryCode
  39. {
  40. get; set;
  41. }
  42. public double GoodsDeclared
  43. {
  44. get; set;
  45. }
  46. public int OrderId
  47. {
  48. get; set;
  49. }
  50. /// <summary>
  51. /// 是否即时扣费
  52. /// </summary>
  53. public bool Bookkeeping
  54. {
  55. get; set;
  56. }
  57. public string TrackingNumber
  58. {
  59. get; set;
  60. }
  61. public int? BranchCompanyCustomerId { get; set; }
  62. /// <summary>
  63. /// 计费对象是否是分公司
  64. /// </summary>
  65. public bool IsChargeBranchCompany { get; set; }
  66. /// <summary>
  67. /// 渠道编号
  68. /// </summary>
  69. public string Publiccode { get; set; }
  70. }
  71. }