select log_id, task_id, operation_type, operation_desc, old_value, new_value,
operator_id, operator_name, operation_time, ip_address,
latitude, longitude, location_address, location_province,
location_city, location_district, gps_accuracy, altitude, speed, heading
from sys_task_log
insert into sys_task_log
task_id,
operation_type,
operation_desc,
old_value,
new_value,
operator_id,
operator_name,
operation_time,
ip_address,
latitude,
longitude,
location_address,
location_province,
location_city,
location_district,
gps_accuracy,
altitude,
speed,
heading,
#{taskId},
#{operationType},
#{operationDesc},
#{oldValue},
#{newValue},
#{operatorId},
#{operatorName},
#{operationTime},
#{ipAddress},
#{latitude},
#{longitude},
#{locationAddress},
#{locationProvince},
#{locationCity},
#{locationDistrict},
#{gpsAccuracy},
#{altitude},
#{speed},
#{heading},
update sys_task_log
task_id = #{taskId},
operation_type = #{operationType},
operation_desc = #{operationDesc},
old_value = #{oldValue},
new_value = #{newValue},
operator_id = #{operatorId},
operator_name = #{operatorName},
operation_time = #{operationTime},
ip_address = #{ipAddress},
where log_id = #{logId}
delete from sys_task_log where log_id = #{logId}
delete from sys_task_log where log_id in
#{logId}
delete from sys_task_log where task_id = #{taskId}