Update model entity

Penambahan field relasi pada master jenis log
This commit is contained in:
Salman Manoe 2024-03-15 13:27:44 +07:00
parent 57c6193558
commit f8a8046b74
2 changed files with 10 additions and 0 deletions

View File

@ -35,4 +35,10 @@ public class JenisLog extends BaseActive implements Serializable {
@NotBlank
@Caption("Jenis Log")
private String jenisLog;
@Column(length = 100, nullable = false)
@Size(max = 100)
@NotBlank
@Caption("Relasi")
private String relasi;
}

View File

@ -19,4 +19,8 @@ public class JenisLogVO extends BaseActiveVO {
@NotBlank
@Caption("Jenis Log")
private String jenisLog;
@NotBlank
@Caption("Relasi")
private String relasi;
}