package com.fjhx.socket.controller.push; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.fjhx.socket.entity.push.dto.PushInfoSelectDto; import com.fjhx.socket.entity.push.vo.PushInfoVo; import com.fjhx.socket.service.push.PushInfoService; import com.ruoyi.common.core.domain.BaseSelectDto; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; /** *
* 消息推送 前端控制器 *
* * @author * @since 2023-07-13 */ @RestController @RequestMapping("/pushInfo") public class PushInfoController { @Autowired private PushInfoService pushInfoService; /** * 消息推送分页 */ @PostMapping("/page") public Page