|
|
@@ -0,0 +1,60 @@
|
|
|
+package com.etotem.cfc.entity;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
+import java.util.Date;
|
|
|
+import java.util.List;
|
|
|
+import java.util.Map;
|
|
|
+
|
|
|
+@Data
|
|
|
+@TableName("doa_stage")
|
|
|
+public class DoaStage implements Serializable {
|
|
|
+
|
|
|
+ @TableId(type = IdType.AUTO)
|
|
|
+ private Long id;
|
|
|
+
|
|
|
+ private Long familyId;
|
|
|
+
|
|
|
+ private Long memberId;
|
|
|
+
|
|
|
+ private String title;
|
|
|
+
|
|
|
+ private Date startDate;
|
|
|
+
|
|
|
+ private Date endDate;
|
|
|
+
|
|
|
+ private Integer durationWeeks;
|
|
|
+
|
|
|
+ private String status;
|
|
|
+
|
|
|
+ private Long createdBy;
|
|
|
+
|
|
|
+ private Date createdAt;
|
|
|
+
|
|
|
+ private Date updatedAt;
|
|
|
+
|
|
|
+ /** 非表字段:目标列表 */
|
|
|
+ @TableField(exist = false)
|
|
|
+ private List<DoaGoal> goals;
|
|
|
+
|
|
|
+ /** 非表字段:周记录列表 */
|
|
|
+ @TableField(exist = false)
|
|
|
+ private List<DoaWeek> weeks;
|
|
|
+
|
|
|
+ /** 非表字段:目标成员昵称 */
|
|
|
+ @TableField(exist = false)
|
|
|
+ private String memberNickname;
|
|
|
+
|
|
|
+ /** 非表字段:已完成周数(复盘过的周) */
|
|
|
+ @TableField(exist = false)
|
|
|
+ private Integer reviewedWeeks;
|
|
|
+
|
|
|
+ /** 非表字段:周总数 */
|
|
|
+ @TableField(exist = false)
|
|
|
+ private Integer totalWeeks;
|
|
|
+}
|