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
/
LocationAreaController
Location
Area
Controller
@
RestController
@
RequestMapping
(
value
=
[
"/location-area"
]
)
class
LocationAreaController
(
locationAreaService
:
LocationAreaService
)
Members
Constructors
Location
Area
Controller
Link copied to clipboard
constructor
(
locationAreaService
:
LocationAreaService
)
Functions
delete
By
Id
Link copied to clipboard
@
DeleteMapping
(
value
=
[
"/{id:\d+}"
]
)
fun
deleteById
(
@
PathVariable
id
:
Long
)
get
Location
Area
Page
Link copied to clipboard
@
GetMapping
(
value
=
[
"/page"
]
)
fun
getLocationAreaPage
(
pageable
:
Pageable
,
@
ModelAttribute
specification
:
LocationAreaSpecification
)
:
Page
<
LocationAreaView
>
save
Link copied to clipboard
@
PostMapping
fun
save
(
@
Valid
@
RequestBody
command
:
SaveLocationAreaInput
)
:
LocationAreaView
update
Link copied to clipboard
@
PutMapping
fun
update
(
@
Valid
@
RequestBody
command
:
UpdateLocationAreaInput
)
:
LocationAreaView