|
@@ -0,0 +1,43 @@
|
|
|
|
|
+package com.etotem.cfc.entity;
|
|
|
|
|
+
|
|
|
|
|
+import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
|
|
+import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
|
|
+import lombok.Data;
|
|
|
|
|
+import java.time.LocalDateTime;
|
|
|
|
|
+
|
|
|
|
|
+@Data
|
|
|
|
|
+@TableName("tianpan_daily_fortune")
|
|
|
|
|
+public class TianpanDailyFortune {
|
|
|
|
|
+
|
|
|
|
|
+ @TableId(type = IdType.AUTO)
|
|
|
|
|
+ private Long id;
|
|
|
|
|
+
|
|
|
|
|
+ private Long familyId;
|
|
|
|
|
+
|
|
|
|
|
+ private String date;
|
|
|
|
|
+
|
|
|
|
|
+ private String lunarDate;
|
|
|
|
|
+
|
|
|
|
|
+ private String dayGanzhi;
|
|
|
|
|
+
|
|
|
|
|
+ private String fiveElementsMain;
|
|
|
|
|
+
|
|
|
|
|
+ private String fiveElementsDetail;
|
|
|
|
|
+
|
|
|
|
|
+ private String auspicious;
|
|
|
|
|
+
|
|
|
|
|
+ private String inauspicious;
|
|
|
|
|
+
|
|
|
|
|
+ private String familyAdvice;
|
|
|
|
|
+
|
|
|
|
|
+ private String focusMemberName;
|
|
|
|
|
+
|
|
|
|
|
+ private String focusMemberTip;
|
|
|
|
|
+
|
|
|
|
|
+ private String wuxingTip;
|
|
|
|
|
+
|
|
|
|
|
+ private LocalDateTime createdAt;
|
|
|
|
|
+
|
|
|
|
|
+ private LocalDateTime updatedAt;
|
|
|
|
|
+}
|