Skip to content

Commit

Permalink
Created basic user model. Closes #1
Browse files Browse the repository at this point in the history
  • Loading branch information
ramoneiggy committed Jan 29, 2020
1 parent d5949a9 commit c3f08a8
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions src/main/java/com/isolaja/skillsearchapp/model/entity/User.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
package com.isolaja.skillsearchapp.model.entity;

import lombok.Data;

import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;

@Data
@Entity
public class User {

@Id
@GeneratedValue
private long id;

@Column(nullable = false)
private String userId;

@Column(nullable = false, length = 50)
private String firstName;

@Column(nullable = false, length = 50)
private String lastName;

@Column(nullable = false, length = 120)
private String email;

@Column(nullable = false)
private String encryptedPassword;
}

0 comments on commit c3f08a8

Please sign in to comment.