package com.template.api; import com.template.model.result.CommonResult; import io.swagger.annotations.ApiOperation; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestParam; @RequestMapping("/api/smart-notification") public interface SmartNotificationControllerAPI { @GetMapping(value = "/remindingList") @ApiOperation(value = "消息提醒页面展示", notes = "消息提醒页面展示", httpMethod = "GET") CommonResult remindingList(@RequestParam Integer id, @RequestParam int currentPage, @RequestParam int pageCount, String type); }