|
@@ -62,9 +62,9 @@ public class UserTenantAlbumRecordController {
|
|
|
|
|
|
@ApiOperation(value = "查询详情")
|
|
@ApiOperation(value = "查询详情")
|
|
@PostMapping("/detail")
|
|
@PostMapping("/detail")
|
|
- public TenantAlbumWrapper.TenantAlbum Albumdetail(@RequestParam(defaultValue = "") String albumId) {
|
|
|
|
|
|
+ public HttpResponseResult <TenantAlbumWrapper.TenantAlbum> Albumdetail(@RequestParam(defaultValue = "") String albumId) {
|
|
TenantAlbumWrapper.TenantAlbum tenantAlbum= userTenantAlbumRecordService.detailAlbum(albumId);
|
|
TenantAlbumWrapper.TenantAlbum tenantAlbum= userTenantAlbumRecordService.detailAlbum(albumId);
|
|
- return tenantAlbum ;
|
|
|
|
|
|
+ return HttpResponseResult.succeed(tenantAlbum);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|