Package nl.paston.apollon.model.dto
Class BatchItemDTO
- java.lang.Object
-
- nl.paston.apollon.model.dto.BatchItemDTO
-
public class BatchItemDTO extends Object
Object representing a batch summary - batch ID, product line, status, and number of matching cases
-
-
Constructor Summary
Constructors Constructor Description BatchItemDTO()BatchItemDTO(String batchId, Long count)BatchItemDTO(String batchId, String productLineName, String status, Long count)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetBatchId()LonggetCount()StringgetProductLineName()StringgetStatus()voidsetBatchId(String batchId)voidsetCount(Long count)voidsetProductLineName(String productLineName)voidsetStatus(String status)StringtoString()
-
-
-
Method Detail
-
getBatchId
public String getBatchId()
-
setBatchId
public void setBatchId(String batchId)
-
getProductLineName
public String getProductLineName()
-
setProductLineName
public void setProductLineName(String productLineName)
-
getStatus
public String getStatus()
-
setStatus
public void setStatus(String status)
-
getCount
public Long getCount()
-
setCount
public void setCount(Long count)
-
-