master
parent
db1ed185ac
commit
be9e466f91
|
@ -54,6 +54,9 @@ public class NodeDisposition {
|
|||
@Excel(name = "配置类型")
|
||||
private String dispType;
|
||||
|
||||
/** 其他信息 */
|
||||
private String dispDesc;
|
||||
|
||||
|
||||
|
||||
@Override
|
||||
|
@ -65,6 +68,7 @@ public class NodeDisposition {
|
|||
.append("dispLabel", getDispLabel())
|
||||
.append("dispValue", getDispValue())
|
||||
.append("dispType", getDispType())
|
||||
.append("dispDesc", getDispDesc())
|
||||
.toString();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -120,6 +120,12 @@ public class NodeController extends BaseController {
|
|||
return success();
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param nodeCodes
|
||||
* @param taskCode
|
||||
* @return
|
||||
*/
|
||||
@DeleteMapping("/{taskCode}/{nodeCodes}")
|
||||
@Transactional
|
||||
public Result<Integer> removeByTaskCode(@PathVariable("nodeCodes") String[] nodeCodes, @PathVariable("taskCode") String taskCode) {
|
||||
|
|
Loading…
Reference in New Issue