make ActivityLog entity immutable

This commit is contained in:
2026-04-13 19:47:45 -06:00
parent 0e53b16d6c
commit 1b00366a1e

View File

@@ -1,11 +1,13 @@
package com.petshop.backend.entity;
import jakarta.persistence.*;
import org.hibernate.annotations.Immutable;
import java.time.LocalDateTime;
import java.util.Objects;
@Entity
@Immutable
@Table(name = "activityLog")
public class ActivityLog {