|
|
@@ -0,0 +1,71 @@
|
|
|
+package com.izouma.awesomeAdmin.domain;
|
|
|
+
|
|
|
+import com.fasterxml.jackson.annotation.JsonIgnore;
|
|
|
+import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
|
|
|
+import com.fasterxml.jackson.annotation.JsonInclude;
|
|
|
+import org.hibernate.envers.Audited;
|
|
|
+import org.springframework.data.annotation.CreatedBy;
|
|
|
+import org.springframework.data.annotation.CreatedDate;
|
|
|
+import org.springframework.data.annotation.LastModifiedBy;
|
|
|
+import org.springframework.data.annotation.LastModifiedDate;
|
|
|
+import org.springframework.data.jpa.domain.support.AuditingEntityListener;
|
|
|
+
|
|
|
+import javax.persistence.EntityListeners;
|
|
|
+import javax.persistence.MappedSuperclass;
|
|
|
+import java.time.LocalDateTime;
|
|
|
+
|
|
|
+@MappedSuperclass
|
|
|
+@Audited
|
|
|
+@EntityListeners(AuditingEntityListener.class)
|
|
|
+@JsonInclude(JsonInclude.Include.NON_NULL)
|
|
|
+@JsonIgnoreProperties(ignoreUnknown = true)
|
|
|
+public abstract class AuditedEntity {
|
|
|
+
|
|
|
+ @JsonIgnore
|
|
|
+ @CreatedBy
|
|
|
+ private String createdBy;
|
|
|
+
|
|
|
+ @JsonIgnore
|
|
|
+ @CreatedDate
|
|
|
+ private LocalDateTime createdAt;
|
|
|
+
|
|
|
+ @JsonIgnore
|
|
|
+ @LastModifiedBy
|
|
|
+ private String modifiedBy;
|
|
|
+
|
|
|
+ @JsonIgnore
|
|
|
+ @LastModifiedDate
|
|
|
+ private LocalDateTime modifiedAt;
|
|
|
+
|
|
|
+ public String getCreatedBy() {
|
|
|
+ return createdBy;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedBy(String createdBy) {
|
|
|
+ this.createdBy = createdBy;
|
|
|
+ }
|
|
|
+
|
|
|
+ public LocalDateTime getCreatedAt() {
|
|
|
+ return createdAt;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreatedAt(LocalDateTime createdAt) {
|
|
|
+ this.createdAt = createdAt;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getModifiedBy() {
|
|
|
+ return modifiedBy;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setModifiedBy(String modifiedBy) {
|
|
|
+ this.modifiedBy = modifiedBy;
|
|
|
+ }
|
|
|
+
|
|
|
+ public LocalDateTime getModifiedAt() {
|
|
|
+ return modifiedAt;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setModifiedAt(LocalDateTime modifiedAt) {
|
|
|
+ this.modifiedAt = modifiedAt;
|
|
|
+ }
|
|
|
+}
|