LogisticsConstant.java 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. package com.fjhx.kd100.constant;
  2. /**
  3. * 物流常量
  4. */
  5. public interface LogisticsConstant {
  6. /**
  7. * 状态
  8. */
  9. class Status {
  10. // 未完成 / 未到货
  11. public static final Integer STATUS_0 = 0;
  12. // 已完成 / 已到货
  13. public static final Integer STATUS_1 = 1;
  14. }
  15. /**
  16. * 入库状态
  17. */
  18. class InStockStatus {
  19. // 未入库
  20. public static final Integer STATUS_10 = 10;
  21. // 部分入库
  22. public static final Integer STATUS_20 = 20;
  23. // 已入库
  24. public static final Integer STATUS_30 = 30;
  25. }
  26. /**
  27. * 物流状态(快递100的状态)
  28. */
  29. class KD100Status {
  30. // 未找到快递信息
  31. public static final Integer STATUS_N = -1;
  32. // 在途
  33. public static final Integer STATUS_0 = 0;
  34. // 揽收
  35. public static final Integer STATUS_1 = 1;
  36. // 疑难
  37. public static final Integer STATUS_2 = 2;
  38. // 签收
  39. public static final Integer STATUS_3 = 3;
  40. // 退签
  41. public static final Integer STATUS_4 = 4;
  42. // 派件
  43. public static final Integer STATUS_5 = 5;
  44. // 退回
  45. public static final Integer STATUS_6 = 6;
  46. // 转投
  47. public static final Integer STATUS_7 = 7;
  48. // 清关
  49. public static final Integer STATUS_8 = 8;
  50. // 拒签
  51. public static final Integer STATUS_14 = 14;
  52. }
  53. }