refactor approve status
This commit is contained in:
@@ -27,9 +27,8 @@ public class Drp extends BaseEntity {
|
||||
@Column(name = "tahun")
|
||||
private Integer tahun;
|
||||
|
||||
@Column(name = "is_approve")
|
||||
@Type(type = "org.hibernate.type.NumericBooleanType")
|
||||
private Boolean isApprove;
|
||||
@Column(name = "approve_status")
|
||||
private String approveStatus;
|
||||
|
||||
@Column(name = "approve_date")
|
||||
private Timestamp approveDate;
|
||||
|
@@ -34,9 +34,6 @@ public class DrpDokumen extends BaseEntity {
|
||||
@Column(name = "keterangan")
|
||||
private String keterangan;
|
||||
|
||||
@Column(name = "file")
|
||||
private byte[] file;
|
||||
|
||||
@Column(name = "is_active")
|
||||
@Type(type = "org.hibernate.type.NumericBooleanType")
|
||||
private Boolean isActive;
|
||||
|
@@ -31,9 +31,6 @@ public class DrpPengadaanDokumen extends BaseEntity {
|
||||
@Column(name = "filename")
|
||||
private String filename;
|
||||
|
||||
@Column(name = "file")
|
||||
private byte[] file;
|
||||
|
||||
@Column(name = "keterangan")
|
||||
private String keterangan;
|
||||
|
||||
|
@@ -10,8 +10,8 @@ public interface DrpView {
|
||||
Integer getTahun();
|
||||
void setTahun(Integer tahun);
|
||||
|
||||
Boolean getIsApprove();
|
||||
void setIsApprove(Boolean isApprove);
|
||||
String getApproveStatus();
|
||||
void setApproveStatus(String isApprove);
|
||||
|
||||
Timestamp getApproveDate();
|
||||
void setApproveDate(Timestamp approveDate);
|
||||
|
@@ -17,7 +17,7 @@ import java.util.List;
|
||||
public class DrpRequest extends BaseRequest {
|
||||
private Long id;
|
||||
private Integer tahun;
|
||||
private Boolean isApprove;
|
||||
private String approveStatus;
|
||||
private Timestamp approveDate;
|
||||
private Boolean isActive;
|
||||
|
||||
|
@@ -16,7 +16,7 @@ import java.util.List;
|
||||
public class DrpResponse extends BaseResponse {
|
||||
private Long id;
|
||||
private Integer tahun;
|
||||
private Boolean isApprove;
|
||||
private String approveStatus;
|
||||
private Timestamp approveDate;
|
||||
private Boolean isActive;
|
||||
private Boolean isDelete;
|
||||
|
Reference in New Issue
Block a user