|
@@ -1,6 +1,5 @@
|
|
|
package com.caimei365.user.service.impl;
|
|
|
|
|
|
-import com.alibaba.fastjson.JSONObject;
|
|
|
import com.caimei365.user.components.RedisService;
|
|
|
import com.caimei365.user.components.WeChatService;
|
|
|
import com.caimei365.user.mapper.HeHeMapper;
|
|
@@ -154,4 +153,10 @@ public class HeHeServiceImpl implements HeHeService {
|
|
|
redisService.set("heCode:" + mobile, randomCode, 300L);
|
|
|
return ResponseJson.success("发送成功");
|
|
|
}
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public ResponseJson<String> getGroupQrCode() {
|
|
|
+ String image = heHeMapper.getGroupQrCode();
|
|
|
+ return ResponseJson.success(image);
|
|
|
+ }
|
|
|
}
|