|
|
|
@ -1,5 +1,6 @@
|
|
|
|
package com.mfsys.uco.model;
|
|
|
|
package com.mfsys.uco.model;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonIgnore;
|
|
|
|
import com.mfsys.comm.util.FieldNameLength;
|
|
|
|
import com.mfsys.comm.util.FieldNameLength;
|
|
|
|
import jakarta.persistence.*;
|
|
|
|
import jakarta.persistence.*;
|
|
|
|
import lombok.AllArgsConstructor;
|
|
|
|
import lombok.AllArgsConstructor;
|
|
|
|
@ -56,6 +57,8 @@ public class CustomerProfile {
|
|
|
|
|
|
|
|
|
|
|
|
@Column(name = "CMP_CUSTIMG", nullable = true, columnDefinition = "LONGTEXT")
|
|
|
|
@Column(name = "CMP_CUSTIMG", nullable = true, columnDefinition = "LONGTEXT")
|
|
|
|
@Lob
|
|
|
|
@Lob
|
|
|
|
|
|
|
|
@JsonIgnore
|
|
|
|
|
|
|
|
@Basic(fetch = FetchType.LAZY)
|
|
|
|
private String cmpCustImage;
|
|
|
|
private String cmpCustImage;
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|