From 675ccd51874f9c005285eab3e4829e451848b4b6 Mon Sep 17 00:00:00 2001
From: java110 <928255095@qq.com>
Date: 星期三, 07 六月 2023 11:11:29 +0800
Subject: [PATCH] Merge branch 'master' of http://git.homecommunity.cn/supervip/MicroCommunity
---
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