|
|
@@ -1,7 +1,10 @@
|
|
|
package com.goafanti.weChat.bo;
|
|
|
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
import com.goafanti.common.model.PublicConfig;
|
|
|
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
public class OutPublicConfig extends PublicConfig {
|
|
|
|
|
|
private String techAuditorName;
|
|
|
@@ -31,4 +34,8 @@ public class OutPublicConfig extends PublicConfig {
|
|
|
public void setOtherAuditorName(String otherAuditorName) {
|
|
|
this.otherAuditorName = otherAuditorName;
|
|
|
}
|
|
|
+ @JsonFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
|
|
+ public Date getCreateTime() {
|
|
|
+ return super.getCreateTime();
|
|
|
+ }
|
|
|
}
|