Skip to content

Instantly share code, notes, and snippets.

@arthurportas
Created January 28, 2017 19:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arthurportas/695375aabc6a2709e0264182efefbc83 to your computer and use it in GitHub Desktop.
Save arthurportas/695375aabc6a2709e0264182efefbc83 to your computer and use it in GitHub Desktop.
User.java
package com.arthurportas.mongodb.example.domain;
import lombok.*;
import org.springframework.data.annotation.Id;
import org.springframework.data.mongodb.core.mapping.Document;
import java.time.ZonedDateTime;
import java.util.Date;
/**
* Created by arthurportas on 21/01/2017.
*/
@Setter
@Builder
@NoArgsConstructor
@AllArgsConstructor
@ToString
@Document
public class User {
@Id
private String id;
private String firstName;
private String lastName;
private String email;
private Date lastUpdated;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment