liujc před 7 měsíci
rodič
revize
9c2d323bad

+ 1 - 0
cooleshow-user/user-biz/src/main/java/com/yonge/cooleshow/biz/dal/service/impl/MusicSheetServiceImpl.java

@@ -927,6 +927,7 @@ public class MusicSheetServiceImpl extends ServiceImpl<MusicSheetDao, MusicSheet
     @Override
     public IPage<MusicSheetVo> myMusic(IPage<MusicSheetVo> page, StudentMusicSheetSearch query) {
         query.setDelFlag(null);
+        query.setProviderType(SourceTypeEnum.PLATFORM);
 
         List<MusicSheetVo> records = baseMapper.selectMyMusicPage(page, query);
         //设置内容平台曲目信息

+ 2 - 2
cooleshow-user/user-biz/src/main/resources/config/mybatis/MusicSheetPracticeRecordMapper.xml

@@ -28,7 +28,7 @@
             <if test="param.auditStatus != null">
                 and msar.last_audit_state_ = #{param.auditStatus}
             </if>
-            <if test="param.providerType == 'TENANT'">
+            <if test="param.providerType.code == 'TENANT'">
                 and find_in_set('TENANT',ms.provider_type_)
 
                 <if test="param.state != null">
@@ -36,7 +36,7 @@
                 </if>
             </if>
 
-            <if test="param.providerType == 'PLATFORM'">
+            <if test="param.providerType.code == 'PLATFORM'">
                 and find_in_set('PLATFORM',ms.provider_type_)
 
                 <if test="param.state != null">