|
@@ -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;
|
|
|
+}
|