package com.iconplus.smartproc.model.projection; public interface SupplyPositioningMatrixView { Long getId(); String getSupplyPositioningMatrix(); String getKeterangan(); Boolean getIsActive(); Boolean getIsDelete(); void setId(Long id); void setSupplyPositioningMatrix(String supplyPositioningMatrix); void setKeterangan(String keterangan); void setIsActive(Boolean isActive); void setIsDelete(Boolean isDelete); }