admin
2020-07-03 651a15c78f668bef3859d9ed1bb7ad0b669d3600
fanli/src/main/java/com/yeshi/fanli/controller/client/v1/UserMsgController.java
@@ -688,7 +688,7 @@
      // 官宣任务
      if (uid != null) {
         MsgCommonDTO guanXuanMsg = msgConfigService.getGuanXuanMsg();
         MsgCommonDTO guanXuanMsg = msgConfigService.getGuanXuanMsg(acceptData.getSystem());
         if (guanXuanMsg != null && guanXuanMsg.getShow() == true) {
            boolean read = false;
            UserMsgUnReadNum num = userMsgReadStateService.getReadStateByUid(uid);
@@ -707,7 +707,7 @@
      }
      // 板栗快省小助手
      MsgCommonDTO zhuShouMsg = msgConfigService.getZhuShouMsg();
      MsgCommonDTO zhuShouMsg = msgConfigService.getZhuShouMsg(acceptData.getSystem());
      if (zhuShouMsg != null && zhuShouMsg.getShow() == true) {
         boolean read = false;
         MsgDeviceReadState state = msgDeviceReadStateService.getByDeviceAndPlatformAndType(
@@ -760,7 +760,7 @@
      int platformCode = Constant.getPlatformCode(acceptData.getPlatform());
      List<Special> listSpecial = specialService.listByPlaceKey("msg_activities", platformCode,
            Integer.parseInt(acceptData.getVersion()));
            Integer.parseInt(acceptData.getVersion()),acceptData.getSystem());
      if (listSpecial != null && listSpecial.size() > 0) {
         for (Special special : listSpecial) {
@@ -890,7 +890,7 @@
       * 提醒大图
       */
      if (!"douyin".equalsIgnoreCase(acceptData.getChannel())) {
         MsgCommonDTO notify = msgConfigService.getNotifyMsg();
         MsgCommonDTO notify = msgConfigService.getNotifyMsg(acceptData.getSystem());
         if (notify != null && notify.getShow() == true) {
            boolean read = false;
@@ -1061,7 +1061,6 @@
    * 
    * @param acceptData
    * @param content
    * @param time
    * @param out
    */
   @RequestMapping(value = "uploadLatestKeFuMsg", method = RequestMethod.POST)