1 package de.juplo.boot.data.jdbc;
4 import org.springframework.data.annotation.Id;
5 import org.springframework.data.relational.core.mapping.Table;
7 import java.time.LocalDateTime;
18 LocalDateTime created;
23 public User(String username, LocalDateTime created, boolean loggedIn) {
24 this.username = username;
25 this.created = created;
26 this.loggedIn = loggedIn;
31 public String toString() {