MoveTargetController

@RestController
@RequestMapping(value = ["/move-target"])
class MoveTargetController(moveTargetService: MoveTargetService)

招式目标控制器

Constructors

Link copied to clipboard
constructor(moveTargetService: MoveTargetService)

Functions

Link copied to clipboard
@DeleteMapping(value = ["/{id:\d+}"])
fun deleteById(@PathVariable id: Long)
Link copied to clipboard
@GetMapping(value = ["/list"])
fun listMoveTargets(@ModelAttribute specification: MoveTargetSpecification): List<MoveTargetView>
Link copied to clipboard
@PostMapping
fun save(@Valid @RequestBody command: SaveMoveTargetInput): MoveTargetView
Link copied to clipboard
@PutMapping
fun update(@Valid @RequestBody command: UpdateMoveTargetInput): MoveTargetView