|
@@ -494,6 +494,18 @@ public class WbsTreeContractClientImpl implements WbsTreeContractClient {
|
|
|
return wbsTreeContractService.getEKey(contractId,pKeyId,wbsId);
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public List<WbsTreeContract> queryListByPIds(List<Long> pIds) {
|
|
|
+ return wbsTreeContractService.queryListByPIds(pIds);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public Integer findIsExistTreeNode(List<String> ids) {
|
|
|
+ return wbsTreeContractService.findIsExistTreeNode(ids);
|
|
|
+ }
|
|
|
+
|
|
|
@Override
|
|
|
public void saveNameRuleByPkeyId(Long pKeyId, String s, Long projectId) {
|
|
|
wbsTreeContractController.saveContractNameRule(s,pKeyId,projectId);
|
|
@@ -502,8 +514,4 @@ public class WbsTreeContractClientImpl implements WbsTreeContractClient {
|
|
|
|
|
|
|
|
|
|
|
|
- @Override
|
|
|
- public List<WbsTreeContract> queryListByPIds(List<Long> pIds) {
|
|
|
- return wbsTreeContractService.queryListByPIds(pIds);
|
|
|
- }
|
|
|
}
|