select id, company_id, company_name, company_user_id, company_user_name, detection_time, az_count, ios_count, unknown_count, total_count, create_time from company_detection_phone_daily_statistics
insert into company_detection_phone_daily_statistics
company_id,
company_name,
company_user_id,
company_user_name,
detection_time,
az_count,
ios_count,
unknown_count,
total_count,
create_time,
#{companyId},
#{companyName},
#{companyUserId},
#{companyUserName},
#{detectionTime},
#{azCount},
#{iosCount},
#{unknownCount},
#{totalCount},
#{createTime},
update company_detection_phone_daily_statistics
company_id = #{companyId},
company_name = #{companyName},
company_user_id = #{companyUserId},
company_user_name = #{companyUserName},
detection_time = #{detectionTime},
az_count = #{azCount},
ios_count = #{iosCount},
unknown_count = #{unknownCount},
total_count = #{totalCount},
create_time = #{createTime},
where id = #{id}
delete from company_detection_phone_daily_statistics where id = #{id}
delete from company_detection_phone_daily_statistics where id in
#{id}