|
@@ -1,11 +1,11 @@
|
|
|
package com.rongwei.bsentity.dto.inside;
|
|
|
|
|
|
-import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
import com.rongwei.bsentity.dto.InsideInspectionOperBaseDto;
|
|
|
import lombok.AllArgsConstructor;
|
|
|
import lombok.Getter;
|
|
|
import lombok.NoArgsConstructor;
|
|
|
import lombok.Setter;
|
|
|
+import org.springframework.format.annotation.DateTimeFormat;
|
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
@@ -37,13 +37,13 @@ public class InsideInspectionExecuteRequest extends InsideInspectionOperBaseDto
|
|
|
/**
|
|
|
* 开始时间
|
|
|
* */
|
|
|
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
private Date startDate;
|
|
|
|
|
|
/**
|
|
|
* 结束时间
|
|
|
*/
|
|
|
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
private Date endDate;
|
|
|
|
|
|
/**
|