Commit b51ddf51 authored by Mindfaker's avatar Mindfaker

fix

parent 94e87ddd
package cn.exploring.engine.server.db.domain; package cn.exploring.engine.server.db.domain;
import org.springframework.format.annotation.DateTimeFormat; import com.fasterxml.jackson.annotation.JsonFormat;
import java.time.LocalDateTime; import java.time.LocalDateTime;
import java.util.ArrayList; import java.util.ArrayList;
...@@ -77,7 +77,7 @@ public class StudentInfo { ...@@ -77,7 +77,7 @@ public class StudentInfo {
* *
* @mbg.generated * @mbg.generated
*/ */
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private LocalDateTime addTime; private LocalDateTime addTime;
/** /**
...@@ -87,7 +87,7 @@ public class StudentInfo { ...@@ -87,7 +87,7 @@ public class StudentInfo {
* *
* @mbg.generated * @mbg.generated
*/ */
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private LocalDateTime updateTime; private LocalDateTime updateTime;
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment