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