MoveLearnMethodController

@RestController
@RequestMapping(value = ["/move-learn-method"])
class MoveLearnMethodController(moveLearnMethodService: MoveLearnMethodService)

招式学习方式控制器

Constructors

Link copied to clipboard
constructor(moveLearnMethodService: MoveLearnMethodService)

Functions

Link copied to clipboard
@DeleteMapping(value = ["/{id:\d+}"])
fun deleteById(@PathVariable id: Long)
Link copied to clipboard
@GetMapping(value = ["/list"])
fun listMoveLearnMethods(@ModelAttribute specification: MoveLearnMethodSpecification): List<MoveLearnMethodView>
Link copied to clipboard
@PostMapping
fun save(@Valid @RequestBody command: SaveMoveLearnMethodInput): MoveLearnMethodView
Link copied to clipboard
@PutMapping
fun update(@Valid @RequestBody command: UpdateMoveLearnMethodInput): MoveLearnMethodView