| | |
| | | |
| | | import com.hx.resultTool.Result; |
| | | import com.hz.crm.dto.GoodsSkuDto; |
| | | import com.hz.crm.dto.GoodsTypeDto; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | |
| | | @PostMapping(value = "/goods/sku/list") |
| | | Result list( @RequestBody(required = false) GoodsSkuDto goodsSkuDto); |
| | | |
| | | /**分类列表*/ |
| | | /**sku分类列表*/ |
| | | @PostMapping(value = "/goods/sku/type/list") |
| | | Result typeList( @RequestBody(required = false) GoodsSkuDto goodsSkuDto); |
| | | |
| | | |
| | | /**分类列表*/ |
| | | @PostMapping(value = "/goods/sku/type/list/all") |
| | | Result typeListAll( @RequestBody(required = false) GoodsTypeDto goodsTypeDto); |
| | | } |