|
|
@@ -22,11 +22,15 @@ import io.swagger.annotations.Api;
|
|
|
import io.swagger.annotations.ApiImplicitParam;
|
|
|
import io.swagger.annotations.ApiImplicitParams;
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
+import lombok.extern.slf4j.Slf4j;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.jdbc.core.JdbcTemplate;
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
|
|
|
|
|
+
|
|
|
+
|
|
|
+@Slf4j
|
|
|
@Api(tags = "微信门户相关接口")
|
|
|
@RestController
|
|
|
@RequestMapping("/wxportal")
|
|
|
@@ -135,6 +139,8 @@ public class WxPortalController extends ApiBaseController {
|
|
|
}
|
|
|
}
|
|
|
List<SysRidingLantern> lanternList = sysRidingLanternService.selectLanternList();
|
|
|
+ log.info("qqqqqqqqqq{}",userTypeList);
|
|
|
+ log.info("wwwwwwwwww{}",lanternList);
|
|
|
List<SysRidingLantern> lanternListhow=new ArrayList<>();
|
|
|
if (lanternList != null && lanternList.size() > 0) {
|
|
|
lanternList.forEach(lantern->{
|
|
|
@@ -159,6 +165,7 @@ public class WxPortalController extends ApiBaseController {
|
|
|
return AjaxResult.error("暂无通知");
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
/**
|
|
|
* 新增保存磁铁日志
|
|
|
*/
|