avalon
Toggle table of contents
0.0.1-SNAPSHOT
jvm
Target filter
jvm
Switch theme
Search in API
Skip to content
avalon
avalon-dataset
/
io.github.lishangbu.avalon.dataset.controller
/
EggGroupController
Egg
Group
Controller
@
RestController
@
RequestMapping
(
value
=
[
"/egg-group"
]
)
class
EggGroupController
(
eggGroupService
:
EggGroupService
)
蛋组控制器
Members
Constructors
Egg
Group
Controller
Link copied to clipboard
constructor
(
eggGroupService
:
EggGroupService
)
Functions
delete
By
Id
Link copied to clipboard
@
DeleteMapping
(
value
=
[
"/{id:\d+}"
]
)
fun
deleteById
(
@
PathVariable
id
:
Long
)
list
Egg
Groups
Link copied to clipboard
@
GetMapping
(
value
=
[
"/list"
]
)
fun
listEggGroups
(
@
ModelAttribute
specification
:
EggGroupSpecification
)
:
List
<
EggGroupView
>
save
Link copied to clipboard
@
PostMapping
fun
save
(
@
Valid
@
RequestBody
command
:
SaveEggGroupInput
)
:
EggGroupView
update
Link copied to clipboard
@
PutMapping
fun
update
(
@
Valid
@
RequestBody
command
:
UpdateEggGroupInput
)
:
EggGroupView