select log_id, user_id, test_num, operType, create_by, create_time, update_by, update_time from ent_oper_log
insert into ent_oper_log
user_id,
test_num,
operType,
create_by,
create_time,
update_by,
update_time,
#{userId},
#{testNum},
#{opertype},
#{createBy},
#{createTime},
#{updateBy},
#{updateTime},
update ent_oper_log
user_id = #{userId},
test_num = #{testNum},
operType = #{opertype},
create_by = #{createBy},
create_time = #{createTime},
update_by = #{updateBy},
update_time = #{updateTime},
where log_id = #{logId}
delete from ent_oper_log where log_id = #{logId}
delete from ent_oper_log where log_id in
#{logId}