This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
package ru.soune.nocopy.entity.user;
|
||||
|
||||
import jakarta.persistence.*;
|
||||
import lombok.*;
|
||||
import org.hibernate.annotations.CreationTimestamp;
|
||||
|
||||
import java.sql.Timestamp;
|
||||
|
||||
@Entity
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
@Getter @Setter
|
||||
@Builder
|
||||
@Table(name = "user_additional_info")
|
||||
public class UserAdditionalInfo {
|
||||
|
||||
@Id
|
||||
@GeneratedValue(strategy = GenerationType.IDENTITY)
|
||||
private Long id;
|
||||
|
||||
@Column(nullable = false, name = "register_date")
|
||||
@CreationTimestamp
|
||||
private Timestamp registrationDate;
|
||||
|
||||
@Column(nullable = false, name = "ip")
|
||||
private String ipAddress;
|
||||
|
||||
@Column(nullable = false, name = "user_agent")
|
||||
private String userAgent;
|
||||
|
||||
@OneToOne(fetch = FetchType.LAZY)
|
||||
@JoinColumn(name = "user_id", unique = true, nullable = false)
|
||||
private User user;
|
||||
}
|
||||
Reference in New Issue
Block a user