1.0.0-RELEASE

This commit is contained in:
insanity 2017-06-02 16:26:24 +09:00
parent dc318bc01d
commit c28c276815

View File

@ -1,9 +1,6 @@
package com.loafle.overflow.agent.model;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.*;
import java.io.Serializable;
/**
@ -16,9 +13,9 @@ public class Agent implements Serializable {
@GeneratedValue(strategy= GenerationType.IDENTITY)
private Long id;
@Column(name="AUTHORIZED_DATE")
private Long authorizedDate;
public Long getId() {
return id;
}