| | |
| | | public static final String HK_ROOTORG_CODE ="HK_ROOTORG_CODE" ; |
| | | public static final String HK_ROOTORG_NAME ="HK_ROOTORG_NAME" ; |
| | | public static final String REDIS_TOKEN_KEY = "token_"; |
| | | public static final String CUSTOMER = "CUSTOMER"; |
| | | public static final String BUSINESS = "BUSINESS"; |
| | | |
| | | |
| | | //被拜访人信息校验方式(0手机号单独校验 1手机号和姓名组合校验) |
| | | public static final String ZBOM_CRM_AUTH_API_KEY = "ZBOM_CRM_AUTH_API_KEY"; |
| | | public static final String BEVISITED_USER_VALID = "BEVISITED_USER_VALID"; |
| | | public static final String LW_BEVISITED_USER_VALID = "LW_BEVISITED_USER_VALID"; |
| | | public static final String SELECT_DOORS_VISIT_REQUIRED = "SELECT_DOORS_VISIT_REQUIRED"; |
| | |
| | | public static final String FILE_DIR = ""; |
| | | public static final String INITIAL_PASSWORD = "INITIAL_PASSWORD"; |
| | | public static final String VALIDATE_VISIT = "VALIDATE_VISIT"; |
| | | public static final String PLATFORM = "mp-weixin"; |
| | | |
| | | // 访客来访配置 |
| | | public static final String VISIT_CONFIG = "VISIT_CONFIG"; |
| | |
| | | |
| | | |
| | | public static final String WX_PLATFORM = "WX_PLATFORM"; |
| | | public static final String ZBOM_ZHONGTAI_API_URL = "ZBOM_ZHONGTAI_API_URL"; |
| | | public static final String WX_PLATFORM_ACCESS_TOKEN = "WX_PLATFORM_ACCESS_TOKEN"; |
| | | public static final String ZBOM_ENCODE_URL = "ZBOM_ENCODE_URL"; |
| | | public static final String WX_PLATFORM_APPID = "WX_PLATFORM_APPID"; |
| | | public static final String WX_PLATFORM_SECRET = "WX_PLATFORM_SECRET"; |
| | | public static final String WX_PLATFORM_AUDIT_VISIT = "WX_PLATFORM_AUDIT_VISIT"; |
| | |
| | | public static final String WX_SECRET_PERSONNEL = "WX_SECRET_PERSONNEL"; |
| | | |
| | | |
| | | |
| | | public interface RedisKeys { |
| | | public static final String IMPORTING_MEMBER ="IMPORTING_MEMBER"; |
| | | public static final String IMPORTING_SHOP ="IMPORTING_SHOP"; |
| | | public static final String IAM_APPID ="IAM_APPID"; |
| | | public static final String ZBOM_CRM_API_KEY ="ZBOM_CRM_API_KEY"; |
| | | public static final String ZBOM_CRM_API_URL ="ZBOM_CRM_API_URL"; |
| | | public static final String ZBOM_SMS_API_KEY ="ZBOM_SMS_API_KEY"; |
| | | public static final String ZBOM_SMS_API_URL ="ZBOM_SMS_API_URL"; |
| | | public static final String IAM_APPKEY ="IAM_APPKEY"; |
| | | public static final String SHOP_TREE ="SHOP_TREE"; |
| | | public static final String ERP_TOKEN ="ERP_TOKEN"; |
| | | public static final long EXPIRE_TIME = 7200; |
| | | String IMPORTING_MEMBER ="IMPORTING_MEMBER"; |
| | | String IMPORTING_SHOP ="IMPORTING_SHOP"; |
| | | String IMPORTING_USERS ="IMPORTING_USERS"; |
| | | String IAM_APPID ="IAM_APPID"; |
| | | String ZBOM_CRM_API_KEY ="ZBOM_CRM_API_KEY"; |
| | | String ZBOM_CRM_AUTH_API_KEY ="ZBOM_CRM_AUTH_API_KEY"; |
| | | String ZBOM_CRM_API_URL ="ZBOM_CRM_API_URL"; |
| | | String ZBOM_ENCODE_URL ="ZBOM_ENCODE_URL"; |
| | | String ZBOM_SMS_API_KEY ="ZBOM_SMS_API_KEY"; |
| | | String ZBOM_ZHONGTAI_API_URL ="ZBOM_ZHONGTAI_API_URL"; |
| | | String ZBOM_SMS_API_URL ="ZBOM_SMS_API_URL"; |
| | | String IAM_APPKEY ="IAM_APPKEY"; |
| | | String SHOP_TREE ="SHOP_TREE"; |
| | | String ERP_TOKEN ="ERP_TOKEN"; |
| | | long EXPIRE_TIME = 7200; |
| | | |
| | | public static final String INTERNAL_TOKEN ="INTERNAL_TOKEN"; |
| | | String INTERNAL_TOKEN ="INTERNAL_TOKEN"; |
| | | |
| | | public static final String GOODSORDER_KEY = "ordercode_"; |
| | | public static final String ACTIVITY_SIGN_KEY = "actcode_"; |
| | | public static final String AFTERSALE_KEY = "salecode_"; |
| | | String GOODSORDER_KEY = "ordercode_"; |
| | | String ACTIVITY_SIGN_KEY = "actcode_"; |
| | | String AFTERSALE_KEY = "salecode_"; |
| | | } |
| | | |
| | | |
| | |
| | | int otherDeal = 4;//他人已处理 |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 根据配置处理房屋户型信息 |
| | | * @param layout |
| | | * @return |
| | | */ |
| | | public static String getHouseLayout(String layout){ |
| | | if(StringUtils.isBlank(layout)){ |
| | | return null; |
| | | } |
| | | String [] arr = layout.split("-"); |
| | | StringBuffer stringBuffer = new StringBuffer(); |
| | | for (int i = 0; i < arr.length; i++) { |
| | | if(i==0){ |
| | | stringBuffer.append( i + "室"); |
| | | }else if(i==1){ |
| | | stringBuffer.append( i + "厅"); |
| | | }else if(i==2){ |
| | | stringBuffer.append( i + "厨"); |
| | | }else if(i==3){ |
| | | stringBuffer.append( i + "卫"); |
| | | }else if(i==4){ |
| | | stringBuffer.append( i + "阳"); |
| | | }else { |
| | | break; |
| | | } |
| | | |
| | | } |
| | | return stringBuffer.toString(); |
| | | } |
| | | |
| | | |
| | | |
| | | /** |
| | | * 获取车牌类型信息 |
| | | * |