1.0.0-RELEASE
This commit is contained in:
parent
dc318bc01d
commit
c28c276815
|
@ -1,9 +1,6 @@
|
||||||
package com.loafle.overflow.agent.model;
|
package com.loafle.overflow.agent.model;
|
||||||
|
|
||||||
import javax.persistence.Entity;
|
import javax.persistence.*;
|
||||||
import javax.persistence.GeneratedValue;
|
|
||||||
import javax.persistence.GenerationType;
|
|
||||||
import javax.persistence.Id;
|
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -16,9 +13,9 @@ public class Agent implements Serializable {
|
||||||
@GeneratedValue(strategy= GenerationType.IDENTITY)
|
@GeneratedValue(strategy= GenerationType.IDENTITY)
|
||||||
private Long id;
|
private Long id;
|
||||||
|
|
||||||
|
@Column(name="AUTHORIZED_DATE")
|
||||||
private Long authorizedDate;
|
private Long authorizedDate;
|
||||||
|
|
||||||
|
|
||||||
public Long getId() {
|
public Long getId() {
|
||||||
return id;
|
return id;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user