init drp
This commit is contained in:
@@ -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);
|
||||
}
|
Reference in New Issue
Block a user