|
|
@@ -495,4 +495,14 @@ public class UserController {
|
|
|
return GatewayResponse.SUCCESS.newBuilder().toResult(searchAll);
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 海报详情
|
|
|
+ */
|
|
|
+ @GetMapping("/get/poster/{goodsId}")
|
|
|
+ public Result<DistributePosterGoodsFrontView> getPosterDetail(@PathVariable Long goodsId) {
|
|
|
+ DistributePosterGoodsFrontView distributePosterGoodsView = beanSearcher.searchFirst(DistributePosterGoodsFrontView.class, MapUtils.flatBuilder(request.getParameterMap())
|
|
|
+ .field(DistributePosterGoodsFrontView::getGoodsId, goodsId)
|
|
|
+ .build());
|
|
|
+ return GatewayResponse.SUCCESS.newBuilder().toResult(distributePosterGoodsView);
|
|
|
+ }
|
|
|
}
|