java110
2021-08-19 6e8c95d31d85b53857e4e3ce12ea303eb0ea42eb
service-common/src/main/java/com/java110/common/dao/impl/MachineRecordServiceDaoImpl.java
old mode 100644 new mode 100755
@@ -136,5 +136,16 @@
        return machineRecordInfos;
    }
    @Override
    public int saveMachineRecords(Map info) {
        int saveFlag = sqlSessionTemplate.update("machineRecordServiceDaoImpl.saveMachineRecords", info);
        if (saveFlag < 1) {
            throw new DAOException(ResponseConstant.RESULT_PARAM_ERROR, "添加数据失败:" + JSONObject.toJSONString(info));
        }
        return saveFlag;
    }
}