25 lines
504 B
Java
25 lines
504 B
Java
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);
|
|
|
|
String getApproveStatus();
|
|
void setApproveStatus(String isApprove);
|
|
|
|
Timestamp getApproveDate();
|
|
void setApproveDate(Timestamp approveDate);
|
|
|
|
Boolean getIsActive();
|
|
void setIsActive(Boolean isActive);
|
|
|
|
Boolean getIsDelete();
|
|
void setIsDelete(Boolean isDelete);
|
|
}
|