This commit is contained in:
dirgantarasiahaan
2023-05-28 22:25:42 +07:00
parent 9f1a9b9004
commit c459dba989
9 changed files with 265 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
package com.iconplus.smartproc.model.projection;
import java.sql.Timestamp;
public interface DrpView {
Long getId();
void setId(Long id);
Integer getTahun();
void setTahun(Integer tahun);
Boolean getIsApprove();
void setIsApprove(Boolean isApprove);
Timestamp getApproveDate();
void setApproveDate(Timestamp approveDate);
Boolean getIsActive();
void setIsActive(Boolean isActive);
Boolean getIsDelete();
void setIsDelete(Boolean isDelete);
}