
org.bahmni.module.referencedata.labconcepts.contract.Panel Maven / Gradle / Ivy
package org.bahmni.module.referencedata.labconcepts.contract;
import java.util.List;
public class Panel extends Resource {
private String description;
private List tests;
private Double sortOrder;
public static final String LAB_SET_CONCEPT_CLASS = "LabSet";
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public List getTests() {
return tests;
}
public void setTests(List tests) {
this.tests = tests;
}
public void setSortOrder(Double sortOrder) {
this.sortOrder = sortOrder;
}
public Double getSortOrder() {
return sortOrder;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy