shiyj1101
2021-09-03 feb454c39515f2368b20de1fcd94c5eb9063e4f5
service-community/src/main/java/com/java110/community/dao/impl/FloorAttrServiceDaoImpl.java
old mode 100644 new mode 100755
@@ -102,7 +102,7 @@
     * @throws DAOException DAO异常
     */
    @Override
    public void updateFloorAttrInfoInstance(Map info) throws DAOException {
    public int updateFloorAttrInfoInstance(Map info) throws DAOException {
        logger.debug("修改考勤班组属性信息Instance 入参 info : {}", info);
        int saveFlag = sqlSessionTemplate.update("floorAttrServiceDaoImpl.updateFloorAttrInfoInstance", info);
@@ -110,6 +110,7 @@
        if (saveFlag < 1) {
            throw new DAOException(ResponseConstant.RESULT_PARAM_ERROR, "修改考勤班组属性信息Instance数据失败:" + JSONObject.toJSONString(info));
        }
        return saveFlag;
    }
    /**