|
|
@@ -0,0 +1,27 @@
|
|
|
+package org.jeecg.modules.business.dto;
|
|
|
+
|
|
|
+import cn.hutool.core.date.DateTime;
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
+import lombok.Data;
|
|
|
+import org.springframework.format.annotation.DateTimeFormat;
|
|
|
+
|
|
|
+@Data
|
|
|
+public class KedanOrderDto {
|
|
|
+ private String thirdUserId;
|
|
|
+ private String keyw;
|
|
|
+ private Integer livingStatus;
|
|
|
+ private String hotelId;
|
|
|
+ private Integer type;
|
|
|
+ private Integer bookingStatus;
|
|
|
+ private String layoutId;
|
|
|
+ private String customerSource;
|
|
|
+ private Integer livingType;
|
|
|
+ private String customerType;
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
+ @DateTimeFormat(pattern="yyyy-MM-dd")
|
|
|
+ private DateTime startTime;
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd")
|
|
|
+ @DateTimeFormat(pattern="yyyy-MM-dd")
|
|
|
+ private DateTime endTime;
|
|
|
+ private Boolean onlyDebt;
|
|
|
+}
|