|  |  | package com.sunyo.wlpt.message.bus.service.controller; | 
|  |  |  | 
|  |  | import com.fasterxml.jackson.annotation.JsonFormat; | 
|  |  | import com.github.pagehelper.PageInfo; | 
|  |  | import com.sunyo.wlpt.message.bus.service.domain.*; | 
|  |  | import com.sunyo.wlpt.message.bus.service.response.ResultJson; | 
|  |  | import com.sunyo.wlpt.message.bus.service.service.*; | 
|  |  | import com.sunyo.wlpt.message.bus.service.utils.IdUtils; | 
|  |  | import org.springframework.format.annotation.DateTimeFormat; | 
|  |  | import org.springframework.scheduling.annotation.Scheduled; | 
|  |  | import org.springframework.web.bind.annotation.*; | 
|  |  |  | 
| ... | ... | @@ -66,9 +66,9 @@ public class MessageNoteController { | 
|  |  | @RequestParam(value = "exchangeName", required = false) String exchangeName, | 
|  |  | @RequestParam(value = "queueName", required = false) String queueName, | 
|  |  | @RequestParam(value = "routingKeyName", required = false) String routingKeyName, | 
|  |  | @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") | 
|  |  | @DateTimeFormat(pattern = "yyyy-MM-dd") | 
|  |  | @RequestParam(value = "sendTime", required = false) Date sendTime, | 
|  |  | @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") | 
|  |  | @DateTimeFormat(pattern = "yyyy-MM-dd") | 
|  |  | @RequestParam(value = "receiveTime", required = false) Date receiveTime, | 
|  |  | @RequestParam(value = "pageNum", defaultValue = "1") Integer pageNum, | 
|  |  | @RequestParam(value = "pageSize", defaultValue = "10") Integer pageSize) { | 
... | ... |  |