`id`, `tenant_id`, `parent_tenant_id`, `user_id`, `video_type`,
`person_mould_id`, `person_mould_sm`, `voice_mould_id`, `voice_mould_sm`, `languages`, `paperwork`, `background_id`, `background_sm`,`material_ids`,`material_all_json`,
`title`, `cover_img`, `remark`, `video_id`, `video_path`, `video_time`, `video_size`, `video_status`, `video_msg`, `create_video_date`, `create_date`, `update_date`
where `is_del` = 0
and `id` = #{id}
and `tenant_id` = #{tenantId}
and `parent_tenant_id` = #{parentTenantId}
and `user_id` = #{userId}
and `video_type` = #{videoType}
and `person_mould_id` = #{personMouldId}
and `voice_mould_id` = #{voiceMouldId}
and `background_id` = #{backgroundId}
and `title` like concat('%', #{title},'%')
and `video_status` = #{videoStatus}
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 user_mould_video set is_del = 1,update_date = now() where id = #{id}