-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(teammanagementlastactivity): added new endpoint for testing (#1525)
- Loading branch information
Showing
5 changed files
with
128 additions
and
1 deletion.
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
34 changes: 34 additions & 0 deletions
34
...ackend/src/main/java/com/xpeho/yaki_admin_backend/domain/entities/LastActivityEntity.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,34 @@ | ||
package com.xpeho.yaki_admin_backend.domain.entities; | ||
|
||
import java.time.LocalDateTime; | ||
|
||
public class LastActivityEntity { | ||
String teamId; | ||
LocalDateTime lastActivityDate; | ||
|
||
public LastActivityEntity() { | ||
} | ||
|
||
public LastActivityEntity(String teamId, LocalDateTime lastActivityDate) { | ||
this.teamId = teamId; | ||
this.lastActivityDate = lastActivityDate; | ||
} | ||
|
||
public String getTeamId() { | ||
return teamId; | ||
} | ||
|
||
public void setTeamId(String teamId) { | ||
this.teamId = teamId; | ||
} | ||
|
||
public LocalDateTime getLastActivityDate() { | ||
return lastActivityDate; | ||
} | ||
|
||
public void setLastActivityDate(LocalDateTime lastActivityDate) { | ||
this.lastActivityDate = lastActivityDate; | ||
} | ||
|
||
} | ||
|
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