From cc8e103aed0cdaf681d813f7601a38d2dd134289 Mon Sep 17 00:00:00 2001
From: Your Name <you@example.com>
Date: 星期五, 11 八月 2023 00:22:17 +0800
Subject: [PATCH] 优化费用
---
java110-core/src/main/java/com/java110/core/context/BusinessServiceDataFlow.java | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/java110-core/src/main/java/com/java110/core/context/BusinessServiceDataFlow.java b/java110-core/src/main/java/com/java110/core/context/BusinessServiceDataFlow.java
index 897fa36..aebc1ca 100755
--- a/java110-core/src/main/java/com/java110/core/context/BusinessServiceDataFlow.java
+++ b/java110-core/src/main/java/com/java110/core/context/BusinessServiceDataFlow.java
@@ -3,7 +3,7 @@
import com.alibaba.fastjson.JSONObject;
import com.java110.utils.constant.ResponseConstant;
import com.java110.utils.exception.InitDataFlowContextException;
-import com.java110.entity.center.Business;
+import com.java110.dto.system.AppBusiness;
import org.slf4j.Logger;
import com.java110.core.log.LoggerFactory;
@@ -36,7 +36,7 @@
public BusinessServiceDataFlow doBuilder(String reqInfo, Map<String, String> headerAll) throws InitDataFlowContextException {
try{
- Business business = null;
+ AppBusiness business = null;
JSONObject reqInfoObj = JSONObject.parseObject(reqInfo);
JSONObject orderObj = reqInfoObj.getJSONObject("orders");
JSONObject businessObject = reqInfoObj.getJSONObject("business");
@@ -48,8 +48,8 @@
this.setBusinessType(orderObj.getString("businessType"));
this.setbId(businessObject.getString("bId"));
paramOut = new HashMap<String, Object>();
- this.businesses = new ArrayList<Business>();
- business = new Business().builder(businessObject);
+ this.businesses = new ArrayList<AppBusiness>();
+ business = new AppBusiness().builder(businessObject);
businesses.add(business);
this.setCurrentBusiness(business);
if (headerAll != null){
--
Gitblit v1.8.0