|
@@ -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,
|