Implemented `CommandStaffJoinDate` to allow viewing and setting staff join dates. Included methods in `QueriesStaffJoinDate` for database interactions and defined the `JoinDate` record to encapsulate join date information.
7 lines
109 B
Java
7 lines
109 B
Java
package com.alttd.DTO;
|
|
|
|
import java.time.Instant;
|
|
|
|
public record JoinDate (long userId, Instant joinDate){
|
|
}
|