`id`, `tenant_id`, `parent_tenant_id`, `user_id`,
`person_photo_id`, `person_photo_url`, `subtitle_enabled`, `subtitle_params`, `voice_from`, `voice_mould_id`, `voice_mould_sm`, `paperwork`, `voice_material_id`, `voice_material_url`,
`title`, `cover_img`, `remark`, `video_id`, `video_path`, `video_play_url`, `video_time`, `video_size`, `video_status`, `video_msg`, `create_video_date`, `create_date`, `update_date`,
`is_hy`,`video_hy_status`,`music_id`,`save_dir`
where `is_del` = 0
and `id` = #{id}
and `tenant_id` = #{tenantId}
and `parent_tenant_id` = #{parentTenantId}
and `user_id` = #{userId}
and `voice_from` = #{voiceFrom}
and `is_hy` = #{isHy}
and `music_id` = #{musicId}
and `save_dir` = #{saveDir}
and `voice_mould_id` = #{voiceMouldId}
and `title` like concat('%', #{title},'%')
and `video_status` = #{videoStatus}
and `video_hy_status` = #{videoHyStatus}
and create_date >= #{startDate}
and create_date < #{endDate}
and create_video_date >= #{videoStartDate}
and create_video_date < #{videoEndDate}
and video_status in
#{videoStatusItem}
and id in
#{idItem}
order by ${sortColumns}
update photo_speak_video set is_del = 1,update_date = now() where id = #{id}