|
@@ -2,6 +2,7 @@ package org.springblade.manager.feign;
|
|
|
|
|
|
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
|
|
|
import lombok.AllArgsConstructor;
|
|
|
+import org.springblade.core.tool.api.R;
|
|
|
import org.springblade.manager.entity.WbsParam;
|
|
|
import org.springblade.manager.entity.WbsTreeContract;
|
|
|
import org.springblade.manager.service.IWbsParamService;
|
|
@@ -27,4 +28,9 @@ public class WbsParamClientImpl implements WbsParamClient{
|
|
|
public String createFileTitle(WbsTreeContract contract) {
|
|
|
return iWbsParamService.createFileTitle(contract);
|
|
|
}
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public R getNameRuleByPkeyId(Long pKeyId, Long projectId) {
|
|
|
+ return iWbsParamService.getNameRuleByPkeyId(pKeyId,projectId);
|
|
|
+ }
|
|
|
}
|