Pārlūkot izejas kodu

Merge remote-tracking branch 'origin/ScrmStores' into ScrmStores

zyy 1 nedēļu atpakaļ
vecāks
revīzija
801446a7f5

+ 1 - 1
fs-service/src/main/java/com/fs/course/mapper/FsUserVideoMapper.java

@@ -134,7 +134,7 @@ public interface FsUserVideoMapper
     @Select({"<script> " +
             "select v.video_id as id,v.title,v.description as msg,t.nick_name as username,t.avatar as headImg, " +
             "v.thumbnail as cover,v.url as src,v.likes as likeNum,v.comments as smsNum,v.favorite_num," +
-            "v.create_time,v.views as playNumber,v.product_id,p.img_url,p.package_name,v.upload_type,v.shares,v.add_num from fs_user_video v " +
+            "v.create_time,v.views as playNumber,v.product_id,p.img_url,p.package_name,v.upload_type,v.shares,v.add_num,t.user_id from fs_user_video v " +
             "left join fs_user_talent t on t.talent_id = v.talent_id " +
             " left join fs_package p on p.package_id = v.product_id " +
             "where v.is_del = 0 and v.status = 1  " +

+ 3 - 0
fs-service/src/main/java/com/fs/course/vo/FsUserVideoListUVO.java

@@ -44,4 +44,7 @@ public class FsUserVideoListUVO {
     private String remark;
     //审核失败原因
     private String failReason;
+
+    //达人ID
+    private String userId;
 }