SmartNotificationControllerAPI.java 682 B

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