刘俊驰 3 mesi fa
parent
commit
076a983b35

+ 12 - 0
cooleshow-app/src/main/java/com/yonge/cooleshow/teacher/controller/MusicSheetController.java

@@ -96,6 +96,18 @@ public class MusicSheetController extends BaseController {
     }
 
 
+
+    /**
+     * 查询单条
+     */
+    @PostMapping("/detailSmall")
+    @ApiOperation(value = "详情")
+    public HttpResponseResult<MusicSheetDetailVo> detail() {
+
+        return succeed(detail);
+    }
+
+
     @GetMapping("/detailUse/{id}")
     @ApiOperation(value = "是否可使用")
     public HttpResponseResult<MusicSheetWrapper.MusicUse> detailUse(@ApiParam(value = "曲谱编号", required = true) @PathVariable("id") String id,

+ 5 - 0
cooleshow-user/user-biz/src/main/java/com/yonge/cooleshow/biz/dal/wrapper/MusicSheetWrapper.java

@@ -1063,4 +1063,9 @@ public class MusicSheetWrapper {
             return JSON.parseObject(json, MusicSheetQuery.class);
         }
     }
+
+    @Data
+    public  static class MusicSheetDetail {
+
+    }
 }