소스 검색

修改执行顺序

wuxw 7 년 전
부모
커밋
f2e337c876
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      Api/src/main/java/com/java110/api/listener/store/SaveStoreServiceListener.java

+ 2 - 2
Api/src/main/java/com/java110/api/listener/store/SaveStoreServiceListener.java

@@ -125,7 +125,7 @@ public class SaveStoreServiceListener extends AbstractServiceApiDataFlowListener
     private JSONObject addStore(JSONObject paramInJson){
         JSONObject business = JSONObject.parseObject("{}");
         business.put(CommonConstant.HTTP_BUSINESS_TYPE_CD, BusinessTypeConstant.BUSINESS_TYPE_SAVE_STORE_INFO);
-        business.put(CommonConstant.HTTP_SEQ,1);
+        business.put(CommonConstant.HTTP_SEQ,2);
         business.put(CommonConstant.HTTP_INVOKE_MODEL,CommonConstant.HTTP_INVOKE_MODEL_S);
 
         business.put(CommonConstant.HTTP_BUSINESS_DATAS,refreshParamIn(paramInJson));
@@ -143,7 +143,7 @@ public class SaveStoreServiceListener extends AbstractServiceApiDataFlowListener
 
         JSONObject business = JSONObject.parseObject("{\"datas\":{}}");
         business.put(CommonConstant.HTTP_BUSINESS_TYPE_CD, BusinessTypeConstant.BUSINESS_TYPE_SAVE_STORE_USER);
-        business.put(CommonConstant.HTTP_SEQ,2);
+        business.put(CommonConstant.HTTP_SEQ,1);
         business.put(CommonConstant.HTTP_INVOKE_MODEL,CommonConstant.HTTP_INVOKE_MODEL_S);
         JSONArray businessStoreUsers = new JSONArray();
         JSONObject businessStoreUser = new JSONObject();