| 123456789101112131415161718192021222324252627 |
- package com.uas.eis.controller;
- import com.uas.eis.service.ProductService;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.web.bind.annotation.PostMapping;
- import org.springframework.web.bind.annotation.RequestParam;
- import org.springframework.web.bind.annotation.RestController;
- import java.util.Map;
- /**
- *
- */
- @RestController
- public class ProductController {
- @Autowired
- private ProductService productService;
- @PostMapping(value = "/yunding/product")
- public Map<String,Object> postProductToYunding(@RequestParam Integer id){
- return productService.postProductToYunding(id);
- }
- }
|