Class TurSEVendorAPI

Object
TurSEVendorAPI

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

  • Method Details

    • turSEVendorList

      @GetMapping public List<TurSEVendor> turSEVendorList()
    • turSEVendorGet

      @GetMapping("/{id}") public TurSEVendor turSEVendorGet(@PathVariable String id)
    • turSEVendorUpdate

      @PutMapping("/{id}") public TurSEVendor turSEVendorUpdate(@PathVariable String id, @RequestBody TurSEVendor turSEVendor)
    • turSEVendorDelete

      @Transactional @DeleteMapping("/{id}") public boolean turSEVendorDelete(@PathVariable String id)
    • turSEVendorAdd

      @PostMapping public TurSEVendor turSEVendorAdd(@RequestBody TurSEVendor turSEVendor)