no_reply_room_select_sql=f'select * from `im_room` where cate_id = {homepageTestData.brandId} and last_msg_uid not in {customer_id_list} and room_type = 1 and is_ignore = 0 and status =1'
other_room_select_sql=f'select * from `im_room` where `cate_id` = {teamData.brandId} and room_type != 2 and site_id = {teamData.shopId} and status = 1 limit 10'
team_member_open_room_select_sql=f'select * from `im_room` where room_id in {team_room_list} and room_type != 2 and status = 1 and allocation_uid = {team_member_id}'
final_chat_select_sql=f'select * from `im_room` where first_send_uid = {ticketDetailData.customerId} and is_ignore = 0 and room_id != {ticketDetailData.roomId} order by last_msg_time desc'