Browse Source

实体类

Newspaper 1 year ago
parent
commit
182f84dea2

+ 25 - 0
huimv-admin/src/main/java/com/huimv/admin/entity/vo/CleanAndDryVo.java

@@ -0,0 +1,25 @@
+package com.huimv.admin.entity.vo;
+
+import com.fasterxml.jackson.annotation.JsonFormat;
+import lombok.Data;
+
+import java.time.LocalDateTime;
+
+@Data
+public class CleanAndDryVo {
+    private String id;
+
+    private Integer billStatus;
+
+    private String testLocation;
+
+    @JsonFormat(pattern = "yyyy-MM-dd HH:mm" ,timezone = "GMT+8")
+    private LocalDateTime checkDate;
+
+    private Integer vistitType;
+
+    @JsonFormat(pattern = "yyyy-MM-dd HH:mm" ,timezone = "GMT+8")
+    private LocalDateTime subDate;
+
+    private Integer type;
+}