|
|
@@ -65,12 +65,12 @@ public class CallbackSmController extends BaseController { |
|
|
|
Map<String,Object> data1 = (Map<String, Object>) data.get("data"); |
|
|
|
Map<String,Object> video = (Map<String, Object>) data1.get("video"); |
|
|
|
String url = (String) video.get("url"); |
|
|
|
String duration = (String) video.get("duration"); |
|
|
|
Double duration = (Double) video.get("duration"); |
|
|
|
|
|
|
|
videoUnd.setVideoStatus(EnumVideoStatus.success.getCode()); |
|
|
|
videoUnd.setVideoMsg("success"); |
|
|
|
videoUnd.setVideoPath(url); |
|
|
|
videoUnd.setVideoTime(duration); |
|
|
|
videoUnd.setVideoTime(String.valueOf(duration)); |
|
|
|
videoUnd.setUpdateDate(new Date()); |
|
|
|
userMouldVideoService.updateById(videoUnd); |
|
|
|
}else{ |
|
|
|