All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.lsqlebai.curd.CURDService.kt Maven / Gradle / Ivy

There is a newer version: 0.4.1
Show newest version
package com.github.lsqlebai.curd

import org.springframework.web.bind.annotation.*

interface CURDService {

    @GetMapping("/")
    fun listAll(): List

    @GetMapping("/list/{id}")
    fun listByParent(@PathVariable id: Int): List

    @DeleteMapping("/{id}")
    fun delete(@PathVariable id: Int)

    @PutMapping("/")
    fun update(@RequestBody item: Item): Item?

    @PostMapping("/")
    fun create(@RequestBody item: Item): Item?

    @GetMapping("/{id}")
    fun one(@PathVariable id:Int): Item?

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy