INSERT INTO store_extend_info_${enterpriseId}
store_id,
latest_order_time
VALUES
#{dto.storeId},
#{dto.latestOrderTime}
ON DUPLICATE KEY UPDATE
store_id = VALUES(store_id),
latest_order_time = VALUES(latest_order_time),
update_time = now(),
INSERT INTO store_extend_info_${enterpriseId} (store_id, score) VALUES (#{storeId}, #{score})
ON DUPLICATE KEY UPDATE
score = values(score)