ItemFlingEffectController

@RestController
@RequestMapping(value = ["/item-fling-effect"])
class ItemFlingEffectController(itemFlingEffectService: ItemFlingEffectService)

道具投掷效果控制器

Constructors

Link copied to clipboard
constructor(itemFlingEffectService: ItemFlingEffectService)

Functions

Link copied to clipboard
@DeleteMapping(value = ["/{id:\d+}"])
fun deleteById(@PathVariable id: Long)
Link copied to clipboard
@GetMapping(value = ["/list"])
fun listItemFlingEffects(@ModelAttribute specification: ItemFlingEffectSpecification): List<ItemFlingEffectView>
Link copied to clipboard
@PostMapping
fun save(@Valid @RequestBody command: SaveItemFlingEffectInput): ItemFlingEffectView
Link copied to clipboard
@PutMapping
fun update(@Valid @RequestBody command: UpdateItemFlingEffectInput): ItemFlingEffectView