From e52ddfe8caf7d0027950033a5aff2a1fd3482e9d Mon Sep 17 00:00:00 2001
From: java110 <928255095@qq.com>
Date: 星期三, 01 六月 2022 17:50:25 +0800
Subject: [PATCH] 优化装修 跟踪记录 回显
---
service-user/src/main/java/com/java110/user/dao/impl/OwnerAttrServiceDaoImpl.java | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/service-user/src/main/java/com/java110/user/dao/impl/OwnerAttrServiceDaoImpl.java b/service-user/src/main/java/com/java110/user/dao/impl/OwnerAttrServiceDaoImpl.java
index a204031..4595e9a 100755
--- a/service-user/src/main/java/com/java110/user/dao/impl/OwnerAttrServiceDaoImpl.java
+++ b/service-user/src/main/java/com/java110/user/dao/impl/OwnerAttrServiceDaoImpl.java
@@ -7,7 +7,7 @@
import com.java110.utils.exception.DAOException;
import com.java110.utils.util.DateUtil;
import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
+import com.java110.core.log.LoggerFactory;
import org.springframework.stereotype.Service;
import java.util.List;
@@ -102,7 +102,7 @@
* @throws DAOException DAO寮傚父
*/
@Override
- public void updateOwnerAttrInfoInstance(Map info) throws DAOException {
+ public int updateOwnerAttrInfoInstance(Map info) throws DAOException {
logger.debug("淇敼涓氫富灞炴�т俊鎭疘nstance 鍏ュ弬 info : {}", info);
int saveFlag = sqlSessionTemplate.update("ownerAttrServiceDaoImpl.updateOwnerAttrInfoInstance", info);
@@ -110,6 +110,7 @@
if (saveFlag < 1) {
throw new DAOException(ResponseConstant.RESULT_PARAM_ERROR, "淇敼涓氫富灞炴�т俊鎭疘nstance鏁版嵁澶辫触锛�" + JSONObject.toJSONString(info));
}
+ return saveFlag;
}
/**
--
Gitblit v1.8.0