refactor v2

This commit is contained in:
dirgantarasiahaan
2023-05-24 09:23:51 +07:00
parent ed88afcdde
commit b49a2425c1
52 changed files with 809 additions and 172 deletions

View File

@@ -0,0 +1,16 @@
package com.iconplus.smartproc.model.projection;
public interface RolesView {
Long getId();
String getRole();
String getKeterangan();
Boolean getIsActive();
Boolean getIsDelete();
void setId(Long id);
void setRole(String role);
void setKeterangan(String keterangan);
void setIsActive(Boolean isActive);
void setIsDelete(Boolean isDelete);
}