-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
杨宇豪
committed
Jul 27, 2024
1 parent
70271a0
commit eeb9dd7
Showing
10 changed files
with
44 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 16 additions & 4 deletions
20
src/main/java/fun/sast/evento/lark/domain/event/entity/Event.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,33 @@ | ||
package fun.sast.evento.lark.domain.event.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("event") | ||
public class Event { | ||
@TableId(value = "id") | ||
private String id; | ||
@TableId(value = "id",type = IdType.ASSIGN_ID) | ||
private Long id; | ||
private String summary; | ||
private String description; | ||
|
||
private LocalDateTime start; | ||
private LocalDateTime end; | ||
private Location location; | ||
private EventDetail detail; | ||
private String location; | ||
private String tag; | ||
private String attachmentUrl; | ||
private Long like; | ||
private Long disLike; | ||
private String larkEventUid; | ||
private String larkMeetingRoomId; | ||
private String larkMeetingRoomName; | ||
private String larkDepartment; | ||
} | ||
//实体类,和其他模块有关联,有影响的部分 |
5 changes: 0 additions & 5 deletions
5
src/main/java/fun/sast/evento/lark/domain/event/entity/EventDetail.java
This file was deleted.
Oops, something went wrong.
8 changes: 8 additions & 0 deletions
8
src/main/java/fun/sast/evento/lark/domain/event/entity/Feedback.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package fun.sast.evento.lark.domain.event.entity; | ||
|
||
public class Feedback { | ||
private Long id; | ||
private Long linkId; | ||
private Long eventId; | ||
private String feedback; | ||
} |
4 changes: 0 additions & 4 deletions
4
src/main/java/fun/sast/evento/lark/domain/event/entity/Location.java
This file was deleted.
Oops, something went wrong.
9 changes: 9 additions & 0 deletions
9
src/main/java/fun/sast/evento/lark/domain/event/entity/Participation.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package fun.sast.evento.lark.domain.event.entity; | ||
|
||
public class Participation { | ||
private Long id; | ||
private Long linkId; | ||
private Long eventId; | ||
private Boolean isSubscribed; | ||
private Boolean isCheckIn; | ||
} |
8 changes: 8 additions & 0 deletions
8
src/main/java/fun/sast/evento/lark/domain/event/entity/Slide.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package fun.sast.evento.lark.domain.event.entity; | ||
|
||
public class Slide { | ||
private Long id; | ||
private String eventId; | ||
private String url; | ||
private String link; | ||
} |
4 changes: 0 additions & 4 deletions
4
src/main/java/fun/sast/evento/lark/domain/lark/entity/Department.java
This file was deleted.
Oops, something went wrong.
4 changes: 0 additions & 4 deletions
4
src/main/java/fun/sast/evento/lark/domain/lark/entity/LarkEvent.java
This file was deleted.
Oops, something went wrong.