|
@@ -82,7 +82,7 @@ public class InformationWriteQueryController extends BladeController {
|
|
|
@PostMapping("/updateContractNodeParameter")
|
|
|
@ApiOperationSupport(order = 13)
|
|
|
@ApiOperation(value = "修改节点信息")
|
|
|
- @ApiImplicitParam(name = "node", value = "节点信息(目前只允许修改名称)")
|
|
|
+ @ApiImplicitParam(name = "node", value = "节点信息(目前只允许修改名称),需要将pKeyId传入")
|
|
|
public R<Boolean> updateContractNodeParameter(@Valid @RequestBody WbsTreeContract node){
|
|
|
//只允许修改节点名称
|
|
|
if(StringUtils.isEmpty(node.getDeptName()) || "null".equals(String.valueOf(node.getPKeyId())) || StringUtils.isNotEmpty(String.valueOf(node.getPKeyId()))){
|