|
@@ -51,14 +51,14 @@ public class TempLittleArtistTrainingCampController extends BaseController {
|
|
|
return succeed();
|
|
|
}
|
|
|
|
|
|
- @ApiOperation("修改机构启用停用状态")
|
|
|
+ @ApiOperation("修改训练营启用停用状态")
|
|
|
@GetMapping(value = "/delete/{id}")
|
|
|
public HttpResponseResult<Object> opsState(@ApiParam(value = "训练营ID", required = true) @PathVariable("id") Integer id) {
|
|
|
tempLittleArtistTrainingCampService.delete(id);
|
|
|
return succeed();
|
|
|
}
|
|
|
|
|
|
- @ApiOperation("修改机构启用停用状态")
|
|
|
+ @ApiOperation("修改训练营启用停用状态")
|
|
|
@GetMapping(value = "/enable/{id}")
|
|
|
public HttpResponseResult<Object> enable(@ApiParam(value = "训练营ID", required = true) @PathVariable("id") Integer id) {
|
|
|
TempLittleArtistTrainingCamp byId = tempLittleArtistTrainingCampService.getById(id);
|