refactor base smartproc

This commit is contained in:
dirgantarasiahaan
2023-05-23 11:40:53 +07:00
parent beff4babe0
commit 69e7e592b0
19 changed files with 62 additions and 17 deletions

View File

@@ -3,6 +3,7 @@ package com.iconplus.smartproc.model.entity;
import com.iconplus.smartproc.helper.base.BaseEntity;
import lombok.Builder;
import lombok.Data;
import org.hibernate.annotations.Type;
import javax.persistence.*;
@@ -22,4 +23,8 @@ public class Lokasi extends BaseEntity {
@Column(name = "keterangan")
private String keterangan;
@Column(name = "deleted")
@Type(type = "org.hibernate.type.NumericBooleanType")
private Boolean deleted;
}