|
|
|
|
82
|
@PutMapping("/tdIssueType/{id}")
|
82
|
@PutMapping("/tdIssueType/{id}")
|
83
|
public ResponseBean edit(@ApiParam("对象实体") @RequestBody TdIssueType tdIssueType,
|
83
|
public ResponseBean edit(@ApiParam("对象实体") @RequestBody TdIssueType tdIssueType,
|
84
|
@ApiParam("对象ID") @PathVariable String id ) throws Exception {
|
84
|
@ApiParam("对象ID") @PathVariable String id ) throws Exception {
|
|
|
85
|
+ tdIssueType.setTypeId(id);
|
85
|
tdIssueTypeService.updateById(tdIssueType);
|
86
|
tdIssueTypeService.updateById(tdIssueType);
|
86
|
return ResponseBean.success(tdIssueType);
|
87
|
return ResponseBean.success(tdIssueType);
|
87
|
}
|
88
|
}
|