add permission logic
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
package com.iconplus.smartproc.model.projection;
|
||||
|
||||
public interface PermissionView {
|
||||
|
||||
Long getParentId();
|
||||
void setParentId(Long parentId);
|
||||
|
||||
Long getMenuId();
|
||||
void setMenuId(Long menuId);
|
||||
|
||||
String getNama();
|
||||
void setNama(String nama);
|
||||
|
||||
Boolean getCanView();
|
||||
void setCanView(Boolean canView);
|
||||
|
||||
Boolean getCanRead();
|
||||
void setCanRead(Boolean canRead);
|
||||
|
||||
Boolean getCanUpdate();
|
||||
void setCanUpdate(Boolean canUpdate);
|
||||
|
||||
Boolean getCanDelete();
|
||||
void setCanDelete(Boolean canDelete);
|
||||
|
||||
Boolean getCanCreate();
|
||||
void setCanCreate(Boolean canCreate);
|
||||
|
||||
}
|
Reference in New Issue
Block a user