micronaut-app/src/main/java/io/containerapps/javaruntime/workshop/micronaut/Statistics.java [13:19]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
public class Statistics {

    @GeneratedValue
    @Id
    private Long id;
    @Column(name = "done_at")
    public Instant doneAt = Instant.now();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



springboot-app/src/main/java/io/containerapps/javaruntime/workshop/springboot/Statistics.java [14:20]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
public class Statistics {

    @GeneratedValue
    @Id
    private Long id;
    @Column(name = "done_at")
    public Instant doneAt = Instant.now();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



