|
@@ -82,6 +82,7 @@ public class TdLocTypeController extends BaseController {
|
82
|
82
|
@PutMapping("/tdLocType/{id}")
|
83
|
83
|
public ResponseBean edit(@ApiParam("对象实体") @RequestBody TdLocType tdLocType,
|
84
|
84
|
@ApiParam("对象ID") @PathVariable String id ) throws Exception {
|
|
85
|
+ tdLocType.setTypeId(id);
|
85
|
86
|
tdLocTypeService.updateById(tdLocType);
|
86
|
87
|
return ResponseBean.success(tdLocType);
|
87
|
88
|
}
|