dos 4 bulan lalu
induk
melakukan
2dc6e53200

+ 1 - 1
game-business/src/main/java/com/game/business/task/AppUserCountTask.java

@@ -721,7 +721,7 @@ public class AppUserCountTask {
                     map.put("roomId", String.valueOf(e.getRoomId()));
                     map.put("liveType", "1");
                     map.put("isLive", String.valueOf(e.getIsLive()));
-                    map.put("description", "关播");
+                    map.put("description", "主播已离线,自动关播");
 
                     String res = HttpClientUtils.ajaxPost(url,map);
                     if(org.apache.commons.lang3.StringUtils.isBlank(res) || !JSONObject.parseObject(res).getString("code").equals("1")){

+ 1 - 1
game-business/src/main/java/com/game/business/util/other/PayOrderUtils.java

@@ -38,7 +38,7 @@ public class PayOrderUtils {
 
     public static Map<String, Object> getPayUrl(String orderNo, String payType, Integer amount,String extra){
 
-        String url = "http://apifoxgame.qhnd.cn";
+        String url = "https://apifoxgame.eruid.com";
         Map<String, Object> resultMap = new HashMap<>();
         resultMap.put("code", 0);
         resultMap.put("mgs", "获取支付地址失败!");

+ 1 - 1
game-business/src/main/resources/mapper/business/AppUserMapper.xml

@@ -878,6 +878,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
 
     <select id="selectOffLineUser" resultType="com.game.business.vo.OffLineUserVo">
         select a.userid as userId,b.islive as isLive,b.id as roomId,a.last_off_line_time as offTime from app_user as a inner join live_live as b on a.userid = b.user_id
-        where b.islive = 1 and online_status = 0
+        where b.islive = 1 and a.online_status = 0
     </select>
 </mapper>