|
@@ -8,6 +8,7 @@ import lombok.Setter;
|
|
|
import java.time.LocalDateTime;
|
|
import java.time.LocalDateTime;
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
import jakarta.validation.constraints.*;
|
|
import jakarta.validation.constraints.*;
|
|
|
|
|
+import org.springframework.format.annotation.DateTimeFormat;
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 用户反馈表单对象
|
|
* 用户反馈表单对象
|
|
@@ -57,6 +58,7 @@ public class UserFeedbackForm implements Serializable {
|
|
|
|
|
|
|
|
@Schema(description = "创建时间")
|
|
@Schema(description = "创建时间")
|
|
|
@JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
|
|
@JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
|
|
+ @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
private LocalDateTime createTime;
|
|
private LocalDateTime createTime;
|
|
|
|
|
|
|
|
@Schema(description = "创建人ID")
|
|
@Schema(description = "创建人ID")
|
|
@@ -64,6 +66,7 @@ public class UserFeedbackForm implements Serializable {
|
|
|
|
|
|
|
|
@Schema(description = "更新时间")
|
|
@Schema(description = "更新时间")
|
|
|
@JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
|
|
@JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
|
|
+ @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
private LocalDateTime updateTime;
|
|
private LocalDateTime updateTime;
|
|
|
|
|
|
|
|
@Schema(description = "更新人ID")
|
|
@Schema(description = "更新人ID")
|