|
@@ -1,6 +1,8 @@
|
|
|
package thyyxxk.webserver.entity.examinations.covidexam;
|
|
|
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
import lombok.Data;
|
|
|
+import org.springframework.format.annotation.DateTimeFormat;
|
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
@@ -9,5 +11,8 @@ public class CovidExamResult {
|
|
|
private String ptntName;
|
|
|
private String idCard;
|
|
|
private String itmStrValue;
|
|
|
+
|
|
|
+ @DateTimeFormat(pattern = "yyyy/MM/dd HH:mm:ss")
|
|
|
+ @JsonFormat(timezone = "GMT+8", pattern = "yyyy/MM/dd HH:mm:ss", shape = JsonFormat.Shape.STRING)
|
|
|
private Date ordrCreateDate;
|
|
|
}
|