| @@ -103,6 +103,8 @@ public class VideoSchedule { | |||||
| video.setVideoTime(videoDetail.getDuration()); | video.setVideoTime(videoDetail.getDuration()); | ||||
| video.setVideoSize(videoDetail.getSize()); | video.setVideoSize(videoDetail.getSize()); | ||||
| video.setVideoStatus(EnumVideoStatus.upload_success.getCode()); | video.setVideoStatus(EnumVideoStatus.upload_success.getCode()); | ||||
| video.setVideoMsg("视频上传成功"); | |||||
| video.setUpdateDate(new Date()); | |||||
| //设置扣费,当前方法是慧影项目专用的 | //设置扣费,当前方法是慧影项目专用的 | ||||
| CreateBilling cb = projectFactory.getProjectService(EnumProject.PROJECT_2.getCode()) | CreateBilling cb = projectFactory.getProjectService(EnumProject.PROJECT_2.getCode()) | ||||
| .handleCreateVideoBilling(video.getUserId(), video.getFinalTenantId(), video.getVideoTime(), video.getVideoSize()); | .handleCreateVideoBilling(video.getUserId(), video.getFinalTenantId(), video.getVideoTime(), video.getVideoSize()); | ||||
| @@ -70,7 +70,7 @@ public interface WxCUserBasicInfoMapper extends CommonMapper<WxCUserBasicInfo, S | |||||
| //void updateCode(Long id, String mcode); | //void updateCode(Long id, String mcode); | ||||
| void reductPoints(@Param("id")Long id,@Param("finalTenantId")String finalTenantId,@Param("reductPoints")Integer reductPoints); | |||||
| void reducePoints(@Param("id")Long id,@Param("finalTenantId")String finalTenantId,@Param("reductPoints")Integer reductPoints); | |||||
| void addPoints(@Param("id")Long id,@Param("finalTenantId")String finalTenantId,@Param("addPoints")Integer addPoints); | void addPoints(@Param("id")Long id,@Param("finalTenantId")String finalTenantId,@Param("addPoints")Integer addPoints); | ||||
| } | } | ||||
| @@ -1543,7 +1543,7 @@ public class WxCUserBasicInfoServiceImpl implements WxCUserBasicInfoService,IExc | |||||
| @Override | @Override | ||||
| public void reducePoints(Long id,String finalTenantId, Integer reducePoints) { | public void reducePoints(Long id,String finalTenantId, Integer reducePoints) { | ||||
| wxCUserBasicInfoMapper.reductPoints(id, finalTenantId, reducePoints); | |||||
| wxCUserBasicInfoMapper.reducePoints(id, finalTenantId, reducePoints); | |||||
| } | } | ||||
| @Override | @Override | ||||