java110
2022-06-28 22e8a676ee42c0d78b3526bcd9a635abbe8dca03
service-user/src/main/java/com/java110/user/dao/impl/OwnerAttrServiceDaoImpl.java
old mode 100644 new mode 100755
@@ -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("修改业主属性信息Instance 入参 info : {}", info);
        int saveFlag = sqlSessionTemplate.update("ownerAttrServiceDaoImpl.updateOwnerAttrInfoInstance", info);
@@ -110,6 +110,7 @@
        if (saveFlag < 1) {
            throw new DAOException(ResponseConstant.RESULT_PARAM_ERROR, "修改业主属性信息Instance数据失败:" + JSONObject.toJSONString(info));
        }
        return saveFlag;
    }
    /**