From 527d899a65c45843d1b96e9b1f27f9a7cfab2feb Mon Sep 17 00:00:00 2001
From: 陶杰 <1378534974@qq.com>
Date: 星期四, 12 九月 2024 20:38:24 +0800
Subject: [PATCH] 1.供应商-订单统计-下拉刷新
---
src/main/java/com/mzl/flower/entity/CalendarDO.java | 61 ++++++++++++++++++++++++++++++
1 files changed, 61 insertions(+), 0 deletions(-)
diff --git a/src/main/java/com/mzl/flower/entity/CalendarDO.java b/src/main/java/com/mzl/flower/entity/CalendarDO.java
new file mode 100644
index 0000000..1f5d9f5
--- /dev/null
+++ b/src/main/java/com/mzl/flower/entity/CalendarDO.java
@@ -0,0 +1,61 @@
+package com.mzl.flower.entity;
+
+
+import com.baomidou.mybatisplus.annotation.TableName;
+
+import lombok.Data;
+
+import lombok.experimental.Accessors;
+
+import java.time.LocalDateTime;
+
+/**
+ * @author @TaoJie
+ * @since 2024-09-12
+ */
+@Data
+@Accessors(chain = true)
+@TableName("t_calendar")
+public class CalendarDO {
+
+ private String id;
+
+
+ /**
+ * 日期
+ */
+ private LocalDateTime calDate;
+
+ /**
+ * 年
+ */
+ private String calYear;
+
+ /**
+ * 月
+ */
+ private String calMonth;
+
+ /**
+ * 日
+ */
+ private String calDay;
+
+ /**
+ * 周(一/二/三/四/五/六/日)
+ */
+ private String calWeek;
+
+ /**
+ * 无/休/班
+ */
+ private Integer type;
+
+
+ private LocalDateTime createTime;
+
+
+ private LocalDateTime updateTime;
+
+
+}
--
Gitblit v1.9.3