Showing
2 changed files
with
2 additions
and
2 deletions
@@ -21,5 +21,5 @@ public interface QiniuLiveRecordMapper { | @@ -21,5 +21,5 @@ public interface QiniuLiveRecordMapper { | ||
21 | 21 | ||
22 | int insertInitRecord(QiniuLiveRecord record); | 22 | int insertInitRecord(QiniuLiveRecord record); |
23 | 23 | ||
24 | - int updateVideoUrl(@Param("id")Integer id, @Param("vedioUrl")Integer vedioUrl); | 24 | + int updateVideoUrl(@Param("id")Integer id, @Param("vedioUrl")String vedioUrl); |
25 | } | 25 | } |
@@ -263,7 +263,7 @@ public class UfoLiveService { | @@ -263,7 +263,7 @@ public class UfoLiveService { | ||
263 | } | 263 | } |
264 | 264 | ||
265 | 265 | ||
266 | - public int updateVideoUrl(Integer id, Integer vedioUrl) { | 266 | + public int updateVideoUrl(Integer id, String vedioUrl) { |
267 | return qiniuLiveRecordMapper.updateVideoUrl(id, vedioUrl); | 267 | return qiniuLiveRecordMapper.updateVideoUrl(id, vedioUrl); |
268 | } | 268 | } |
269 | } | 269 | } |
-
Please register or login to post a comment