|
@@ -57,7 +57,9 @@ public class CorrelationService implements ICorrelationService{
|
|
|
return true;
|
|
|
}
|
|
|
|
|
|
-
|
|
|
+ /**
|
|
|
+ * 目前这个方法没有用处了!!---------------------------------------
|
|
|
+
|
|
|
public boolean addCorrelation2(Correlation c) {
|
|
|
// TODO 添加所有的报表的operator关联
|
|
|
myBatisDao.save("correlationSqlMapper.addCorrelation21", c);
|
|
@@ -68,8 +70,14 @@ public class CorrelationService implements ICorrelationService{
|
|
|
myBatisDao.save("correlationSqlMapper.addCorrelation26", c);
|
|
|
return true;
|
|
|
}
|
|
|
-
|
|
|
-
|
|
|
+ *
|
|
|
+ */
|
|
|
+
|
|
|
+/**
|
|
|
+ * 目前这个方法没有用处了!!---------------------------------------
|
|
|
+ * @param c
|
|
|
+ * @return
|
|
|
+ *
|
|
|
public boolean deleteCorrelation2(Correlation c) {
|
|
|
// TODO Auto-generated method stub
|
|
|
myBatisDao.save("correlationSqlMapper.deleteCorrelation21", c);
|
|
@@ -80,12 +88,13 @@ public class CorrelationService implements ICorrelationService{
|
|
|
myBatisDao.save("correlationSqlMapper.deleteCorrelation26", c);
|
|
|
return true;
|
|
|
}
|
|
|
-
|
|
|
+ *
|
|
|
+ */
|
|
|
+
|
|
|
@Override
|
|
|
public boolean addCorrelation(Correlation c) {
|
|
|
// TODO Auto-generated method stub
|
|
|
addCorrelation1(c);
|
|
|
- addCorrelation2(c);
|
|
|
return true;
|
|
|
}
|
|
|
|
|
@@ -93,7 +102,6 @@ public class CorrelationService implements ICorrelationService{
|
|
|
public boolean deleteCorrelation(Correlation c) {
|
|
|
// TODO Auto-generated method stub
|
|
|
deleteCorrelation1(c);
|
|
|
- deleteCorrelation2(c);
|
|
|
return true;
|
|
|
}
|
|
|
|