diff --git a/src/main/java/com/mfsys/uco/model/CustomerProfile.java b/src/main/java/com/mfsys/uco/model/CustomerProfile.java index 79b3ffb..40ad0d1 100644 --- a/src/main/java/com/mfsys/uco/model/CustomerProfile.java +++ b/src/main/java/com/mfsys/uco/model/CustomerProfile.java @@ -1,5 +1,6 @@ package com.mfsys.uco.model; +import com.fasterxml.jackson.annotation.JsonIgnore; import com.mfsys.comm.util.FieldNameLength; import jakarta.persistence.*; import lombok.AllArgsConstructor; @@ -56,6 +57,8 @@ public class CustomerProfile { @Column(name = "CMP_CUSTIMG", nullable = true, columnDefinition = "LONGTEXT") @Lob + @JsonIgnore + @Basic(fetch = FetchType.LAZY) private String cmpCustImage; }