35 lines
801 B
Java
35 lines
801 B
Java
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;
|
||
|
|
}
|