Browse Source

账号关联去掉多余的表!

Signed-off-by: 原志强 <zhiqiang.yuan@cloudcross.com>
原志强 9 years ago
parent
commit
73a3a12953

+ 14 - 6
src/main/java/com/cloudcross/ssp/service/impl/CorrelationService.java

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