You've already forked FrameTour-BE
改bug
This commit is contained in:
@ -38,4 +38,9 @@ AppFaceController {
|
||||
public ApiResponse faceUpload(@RequestParam("file")MultipartFile file, @RequestParam("scenicId") Long scenicId) {
|
||||
return faceService.faceUpload(file,scenicId);
|
||||
}
|
||||
|
||||
@GetMapping("/{faceId}")
|
||||
public ApiResponse<FaceRespVO> getById(@PathVariable("faceId") Long faceId) {
|
||||
return faceService.getById(faceId);
|
||||
}
|
||||
}
|
||||
|
@ -50,6 +50,12 @@ public class AppGoodsController {
|
||||
return goodsService.videoGoodsDetail(worker.getUserId(), videoId);
|
||||
}
|
||||
|
||||
@GetMapping("/sourceGoods/{sourceId}")
|
||||
public ApiResponse<GoodsDetailVO> sourceGoodsInfo(@PathVariable("sourceId") Long sourceId) {
|
||||
JwtInfo worker = JwtTokenUtil.getWorker();
|
||||
return goodsService.sourceGoodsInfo(worker.getUserId(), sourceId);
|
||||
}
|
||||
|
||||
@ApiOperation("查询价格")
|
||||
@PostMapping("/queryPrice")
|
||||
public ApiResponse<BigDecimal> queryPrice(@RequestBody GoodsPriceQueryReq queryPriceData) {
|
||||
|
Reference in New Issue
Block a user