fix total pengadaan in response

This commit is contained in:
dirgantarasiahaan
2023-06-05 13:58:30 +07:00
parent d30a8ca6be
commit b648b3d7bf
4 changed files with 10 additions and 2 deletions

View File

@@ -23,6 +23,10 @@ public interface DrpView {
Date getPrintDate();
void setPrintDate(Date printDate);
Integer getTotalPengadaan();
void setTotalPengadaan(Integer totalPengadaan);
Boolean getIsActive();
void setIsActive(Boolean isActive);

View File

@@ -20,6 +20,7 @@ public class DrpResponse extends BaseResponse {
private Date approveDate;
private Boolean isActive;
private Boolean isDelete;
private Integer totalPengadaan;
private List<DrpDokumenResponse> dataDrpDokumen;