| | |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RequestMethod; |
| | | |
| | | import javax.servlet.http.HttpServletRequest; |
| | | |
| | |
| | | Result goodsCheckType( @RequestBody(required = false) CouponCheckDto couponCheckDto); |
| | | |
| | | /**修改上下架*/ |
| | | @RequestMapping(value = "/updateUp") |
| | | Result updateUp(@RequestBody(required = false) GoodsSkuDto goodsSkuDto); |
| | | |
| | | /**分类列表*/ |
| | | @RequestMapping(value = "/goods/sku/type/select/list") |
| | | Result goodsSkuTypeList(@RequestBody(required = false) GoodsTypeDto goodsTypeDto); |
| | | } |