Class TurMLVendorAPI

Object
TurMLVendorAPI

@RestController @RequestMapping("/api/ml/vendor") public class TurMLVendorAPI extends Object
  • Constructor Details

  • Method Details

    • turMLVendorList

      @GetMapping public List<TurMLVendor> turMLVendorList()
    • turMLVendorGet

      @GetMapping("/{id}") public TurMLVendor turMLVendorGet(@PathVariable String id)
    • turMLVendorUpdate

      @PutMapping("/{id}") public TurMLVendor turMLVendorUpdate(@PathVariable String id, @RequestBody TurMLVendor turMLVendor)
    • turMLVendorDelete

      @Transactional @DeleteMapping("/{id}") public boolean turMLVendorDelete(@PathVariable String id)
    • turMLVendorAdd

      @PostMapping public TurMLVendor turMLVendorAdd(@RequestBody TurMLVendor turMLVendor)