|  |  | 
 |  |  |     public static final String HWY_OBS_ACCESSKEY ="HWY_OBS_ACCESSKEY" ; | 
 |  |  |     public static final String HWY_OBS_ENDPOINT ="HWY_OBS_ENDPOINT" ; | 
 |  |  |     public static final String HWY_OBS_BUCKET ="HWY_OBS_BUCKET" ; | 
 |  |  |     public static final String FTP ="FTP" ; | 
 |  |  |     public static final String FTP_HOST ="FTP_HOST" ; | 
 |  |  |     public static final String FTP_PORT ="FTP_PORT" ; | 
 |  |  |     public static final String FTP_USERNAME ="FTP_USERNAME" ; | 
 |  |  |     public static final String FTP_PWD ="FTP_PWD" ; | 
 |  |  |     public static final String FTP_RESOURCE_PATH ="FTP_RESOURCE_PATH" ; | 
 |  |  |     public static final String FTP_LOCAL_RESOURCE_PATH ="FTP_LOCAL_RESOURCE_PATH" ; | 
 |  |  |     public static final String RESOURCE_PATH ="RESOURCE_PATH" ; | 
 |  |  |     public static final String QYWX_CORPID = "QYWX_CORPID"; | 
 |  |  |     public static final String QYWX_SECRET = "QYWX_SECRET"; | 
 |  |  |     public static final String QYWX_TOKEN = "QYWX_TOKEN"; | 
 |  |  | 
 |  |  |     public static final Integer FOUR = 4; | 
 |  |  |     public static final Integer SIX = 6; | 
 |  |  |     public static final Integer FIVE = 5; | 
 |  |  |     public static final String INENTITY_FILES = "INENTITY_FILES"; | 
 |  |  |     public static final String MEMBER_FILES = "MEMBER_FILES"; | 
 |  |  |     public static final String CATEGORY_FILES = "CATEGORY_FILES"; | 
 |  |  |     public static final String ORDERS_FILES = "ORDERS_FILES"; | 
 |  |  |     public static boolean WORKORDER_SHE_EMAIL_SENDING = false; | 
 |  |  |     public static  boolean DEALING_COMPANY_SYNC = false ; | 
 |  |  |     public static  boolean DEALING_MEMBER_SYNC = false ; | 
 |  |  | 
 |  |  |     interface CacheKey { | 
 |  |  |     } | 
 |  |  |     public interface RedisKeys { | 
 |  |  |         public static final String IMPORTING_CATEGORY = "IMPORTING_CATEGORY"; | 
 |  |  |         public static final String ORDER_CODE = "ORDER_CODE"; | 
 |  |  |     } | 
 |  |  |     /** | 
 |  |  |      * 操作类型,用于做接口验证分组 | 
 |  |  | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |  | 
 |  |  |     public  enum workType { | 
 |  |  |         czg(0, "采摘工"), | 
 |  |  |         fjg(1, "分拣工"), | 
 |  |  |         bzg(2, "包装工"), | 
 |  |  |  | 
 |  |  |         ; | 
 |  |  |         // 成员变量 | 
 |  |  |         private int key; | 
 |  |  |         private String name; | 
 |  |  |  | 
 |  |  |         // 构造方法 | 
 |  |  |         workType(int key, String name) { | 
 |  |  |             this.name = name; | 
 |  |  |             this.key = key; | 
 |  |  |         } | 
 |  |  |  | 
 |  |  |         // 普通方法 | 
 |  |  |         public static String getName(int index) { | 
 |  |  |             for (OrdersLog c : OrdersLog.values()) { | 
 |  |  |                 if (c.getKey() == index) { | 
 |  |  |                     return c.name; | 
 |  |  |                 } | 
 |  |  |             } | 
 |  |  |             return null; | 
 |  |  |         } | 
 |  |  |         // get set 方法 | 
 |  |  |         public String getName() { | 
 |  |  |             return name; | 
 |  |  |         } | 
 |  |  |  | 
 |  |  |         public void setName(String name) { | 
 |  |  |             this.name = name; | 
 |  |  |         } | 
 |  |  |  | 
 |  |  |         public int getKey() { | 
 |  |  |             return key; | 
 |  |  |         } | 
 |  |  |  | 
 |  |  |         public void setKey(int key) { | 
 |  |  |             this.key = key; | 
 |  |  |         } | 
 |  |  |  | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |  | 
 |  |  | } |