Dict.java 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. package com.emato.cus.supervise.constant;
  2. import java.util.HashMap;
  3. import java.util.Map;
  4. /**
  5. * @author zengjunlin
  6. * @version 1.0
  7. * 2018-02-02 16:13
  8. */
  9. public class Dict {
  10. // 操作员编号,固定
  11. public static final String operater = "user999999999999999999";
  12. // 园区账册号(改为货主金二账册编号,每个货主各一个)
  13. // public static final String localEmsNo = "I440366000315001";
  14. // 仓库使用企业名称
  15. public static final String storeCompanyName = "前海电商(深圳)供应链集团有限公司";
  16. // 仓库使用企业社会信用代码
  17. public static final String storeUscCode = "914403003194897172";
  18. // 仓库使用企业海关编码
  19. public static final String storeCustomsCode = "4403660003";
  20. // 仓库编码
  21. public static final String storeCode = "534931948971720190717000256749";
  22. /**
  23. * 仓库在海关WMS监控系统中的备案编号
  24. * 每个仓库都有唯一一个编号
  25. */
  26. public static final Map<String, String> storeCodeMap = new HashMap<String, String>() {
  27. {
  28. // 默认前海仓
  29. put("Others", "534931948971720190717000256749");
  30. // 前海仓在海关WMS监控系统中的备案编号
  31. put("wbsn908608868987305984", "534931948971720190717000256749");
  32. }
  33. };
  34. /**
  35. * WMS库位对应OMS账册分类转换
  36. */
  37. public static final Map<String, String> emsClassTypeMap = new HashMap<String, String>(){
  38. {
  39. put("ZS", "zszc"); // 展示账册分类,zs:展示账册
  40. // 2024-02-02 海关业务变化,导致CW使用新的账册出区,WMS库位启用新的前缀标识 CWMD (CW门店的缩写)
  41. put("CWMD", "bswl"); // CW门店,bsws:保税物流
  42. put("F", "fbwl"); // 非保账册分类,fbwl:非保物流
  43. put("Others", "kjds"); // 跨境电商账册分类,bswl:保税物流
  44. }
  45. };
  46. }