|
@@ -67,6 +67,18 @@ public class InitializeBuildingUnitDaoImpl extends BaseServiceDao implements IIn
|
|
|
|
|
|
|
|
int deleteFlag = sqlSessionTemplate.delete("initializeBuildingUnitDaoImpl.deleteBuildingRoom", info);
|
|
int deleteFlag = sqlSessionTemplate.delete("initializeBuildingUnitDaoImpl.deleteBuildingRoom", info);
|
|
|
|
|
|
|
|
|
|
+ /* if (deleteFlag < 1) {
|
|
|
|
|
+ throw new DAOException(ResponseConstant.RESULT_PARAM_ERROR, "f_floor初始化失败:" + JSONObject.toJSONString(info));
|
|
|
|
|
+ }*/
|
|
|
|
|
+ return deleteFlag;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ @Override
|
|
|
|
|
+ public int deleteOwnerRoomRel(Map info) {
|
|
|
|
|
+ logger.debug("初始化房屋业主Instance 入参 info : {}", info);
|
|
|
|
|
+
|
|
|
|
|
+ int deleteFlag = sqlSessionTemplate.delete("initializeBuildingUnitDaoImpl.deleteOwnerRoomRel", info);
|
|
|
|
|
+
|
|
|
/* if (deleteFlag < 1) {
|
|
/* if (deleteFlag < 1) {
|
|
|
throw new DAOException(ResponseConstant.RESULT_PARAM_ERROR, "f_floor初始化失败:" + JSONObject.toJSONString(info));
|
|
throw new DAOException(ResponseConstant.RESULT_PARAM_ERROR, "f_floor初始化失败:" + JSONObject.toJSONString(info));
|
|
|
}*/
|
|
}*/
|
|
@@ -100,5 +112,17 @@ public class InitializeBuildingUnitDaoImpl extends BaseServiceDao implements IIn
|
|
|
return deleteFlag;
|
|
return deleteFlag;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+ @Override
|
|
|
|
|
+ public int deleteOwnerCar(Map info) {
|
|
|
|
|
+ logger.debug("车辆Instance 入参 info : {}", info);
|
|
|
|
|
+
|
|
|
|
|
+ int deleteFlag = sqlSessionTemplate.delete("initializeBuildingUnitDaoImpl.deleteOwnerCar", info);
|
|
|
|
|
+
|
|
|
|
|
+ /* if (deleteFlag < 1) {
|
|
|
|
|
+ throw new DAOException(ResponseConstant.RESULT_PARAM_ERROR, "f_floor初始化失败:" + JSONObject.toJSONString(info));
|
|
|
|
|
+ }*/
|
|
|
|
|
+ return deleteFlag;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
|
|
|
}
|
|
}
|