fix telepon and init lupas
This commit is contained in:
@@ -0,0 +1,64 @@
|
||||
package com.iconplus.smartproc.model.projection;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.sql.Date;
|
||||
|
||||
public interface DrpPengadaanView {
|
||||
|
||||
Long getId();
|
||||
void setId(Long id);
|
||||
|
||||
Long getDrpId();
|
||||
void setDrpId(Long drpId);
|
||||
|
||||
String getNomor();
|
||||
void setNomor(String nomor);
|
||||
|
||||
String getNamaPengadaan();
|
||||
void setNamaPengadaan(String namaPengadaan);
|
||||
|
||||
Long getLokasiId();
|
||||
void setLokasiId(Long lokasiId);
|
||||
|
||||
Long getJenisPengadaanId();
|
||||
void setJenisPengadaanId(Long jenisPengadaanId);
|
||||
|
||||
Long getUnitInisiatorId();
|
||||
void setUnitInisiatorId(Long unitInisiatorId);
|
||||
|
||||
BigDecimal getHpe();
|
||||
void setHpe(BigDecimal hpe);
|
||||
|
||||
BigDecimal getPagu();
|
||||
void setPagu(BigDecimal pagu);
|
||||
|
||||
Long getSumberDanaId();
|
||||
void setSumberDanaId(Long sumberDanaId);
|
||||
|
||||
Long getMetodePengadaanId();
|
||||
void setMetodePengadaanId(Long metodePengadaanId);
|
||||
|
||||
Long getSupplyPositioningMatrix();
|
||||
void setSupplyPositioningMatrix(Long supplyPositioningMatrix);
|
||||
|
||||
Long getMetodePenyampaianId();
|
||||
void setMetodePenyampaianId(Long metodePenyampaianId);
|
||||
|
||||
Long getJenisKontrakId();
|
||||
void setJenisKontrakId(Long jenisKontrakId);
|
||||
|
||||
Long getStrategiPengadaanId();
|
||||
void setStrategiPengadaanId(Long strategiPengadaanId);
|
||||
|
||||
Date getRencanaTanggal();
|
||||
void setRencanaTanggal(Date rencanaTanggal);
|
||||
|
||||
Date getTargetTanggal();
|
||||
void setTargetTanggal(Date targetTanggal);
|
||||
|
||||
Boolean getIsActive();
|
||||
void setIsActive(Boolean isActive);
|
||||
|
||||
Boolean getIsDelete();
|
||||
void setIsDelete(Boolean isDelete);
|
||||
}
|
@@ -17,6 +17,7 @@ public interface UserRoleView {
|
||||
Long getRoleId();
|
||||
String getRole();
|
||||
Boolean getIsDelete();
|
||||
String getTelepon();
|
||||
|
||||
void setId(Long id);
|
||||
void setUsername(String username);
|
||||
@@ -33,5 +34,6 @@ public interface UserRoleView {
|
||||
void setRoleId(Long roleId);
|
||||
void setRole(String role);
|
||||
void setIsDelete(Boolean isDelete);
|
||||
void setTelepon(String telepon);
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user