Class TurStoreVendorAPI

Object
TurStoreVendorAPI

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

  • Method Details

    • turStoreVendorList

      @GetMapping public List<TurStoreVendor> turStoreVendorList()
    • turStoreVendorGet

      @GetMapping("/{id}") public TurStoreVendor turStoreVendorGet(@PathVariable String id)
    • turStoreVendorUpdate

      @PutMapping("/{id}") public TurStoreVendor turStoreVendorUpdate(@PathVariable String id, @RequestBody TurStoreVendor turStoreVendor)
    • turStoreVendorDelete

      @Transactional @DeleteMapping("/{id}") public boolean turStoreVendorDelete(@PathVariable String id)
    • turStoreVendorAdd

      @PostMapping public TurStoreVendor turStoreVendorAdd(@RequestBody TurStoreVendor turStoreVendor)