insert into cm_brand_video(authUserId, title, image, name, previewUrl, downloadUrl, auditStatus, status, createTime,
auditBy, auditTime)
values (#{authUserId}, #{title}, #{image}, #{name}, #{previewUrl}, #{downloadUrl}, #{auditStatus}, #{status},
#{createTime}, #{auditBy}, #{auditTime})
update cm_brand_video
set title = #{title},
status = #{status},
auditStatus = #{auditStatus}
where id = #{id}
update cm_brand_video
set status = #{status}
where id = #{videoId}
update cm_brand_video
set status = #{status},
auditStatus = #{auditStatus},
invalidReason = #{invalidReason},
auditBy = #{auditBy},
auditTime = #{auditTime}
where id = #{videoId}
update cm_brand_video
title = #{title},
image = #{image},
previewUrl = #{previewUrl},
downloadUrl = #{downloadUrl},
name = #{name},
status = #{status},
auditStatus = #{auditStatus},
where id = #{id}
update cm_brand_video set checkFlag = 1 where id = #{videoId}
delete from cm_brand_video where id = #{videoId}