|
@@ -1,4 +1,5 @@
|
|
|
package com.fdkankan.manage.httpClient.service;
|
|
|
+import cn.hutool.core.bean.BeanUtil;
|
|
|
import com.fdkankan.manage.mq.common.MqQueueUtil;
|
|
|
import com.fdkankan.rabbitmq.util.RabbitMqProducer;
|
|
|
import com.google.common.collect.Lists;
|
|
@@ -207,7 +208,8 @@ public class LaserService {
|
|
|
param.setPhone(user.getUserName());
|
|
|
}
|
|
|
}
|
|
|
- rabbitMqProducer.sendByWorkQueue(MqQueueUtil.laserMoveQueue,JSONObject.toJSONString(param));
|
|
|
+ Map<String, Object> map = BeanUtil.beanToMap(param);
|
|
|
+ rabbitMqProducer.sendByWorkQueue(MqQueueUtil.laserMoveQueue,map);
|
|
|
//laserClient.migrate(param);
|
|
|
}
|
|
|
|