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