|
@ -1,6 +1,8 @@ |
|
|
package com.qs.serve.modules.seeyon.entity.bo; |
|
|
package com.qs.serve.modules.seeyon.entity.bo; |
|
|
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat; |
|
|
import com.fasterxml.jackson.annotation.JsonFormat; |
|
|
|
|
|
import com.fasterxml.jackson.databind.annotation.JsonDeserialize; |
|
|
|
|
|
import com.qs.serve.common.util.model.QsJsonLocalDateTimeDeserializer; |
|
|
import lombok.Data; |
|
|
import lombok.Data; |
|
|
import org.springframework.format.annotation.DateTimeFormat; |
|
|
import org.springframework.format.annotation.DateTimeFormat; |
|
|
|
|
|
|
|
@ -62,24 +64,16 @@ public class SeeYonApproveQuery { |
|
|
/** |
|
|
/** |
|
|
* 申请开始时间 |
|
|
* 申请开始时间 |
|
|
*/ |
|
|
*/ |
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8") |
|
|
private String applyStartDate; |
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd") |
|
|
|
|
|
private LocalDate applyStartDate; |
|
|
|
|
|
|
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8") |
|
|
private String applyEndDate; |
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd") |
|
|
|
|
|
private LocalDate applyEndDate; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
* 评论结束时间 |
|
|
* 评论结束时间 |
|
|
*/ |
|
|
*/ |
|
|
@JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8") |
|
|
private String commitEndDate; |
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd") |
|
|
|
|
|
private LocalDate commitEndDate; |
|
|
|
|
|
|
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8") |
|
|
private String commitStartDate; |
|
|
@DateTimeFormat(pattern = "yyyy-MM-dd") |
|
|
|
|
|
private LocalDate commitStartDate; |
|
|
|
|
|
|
|
|
|
|
|
private Integer pageNum; |
|
|
private Integer pageNum; |
|
|
|
|
|
|
|
|