/* * Created on Jan 12, 2005 * */ package net.sourceforge.fenixedu.domain.projectsManagement; import java.io.Serializable; /** * @author Susana Fernandes * */ public class MovementReportLine implements Serializable, IMovementReportLine { private String movementId; private Integer rubricId; private String type; private String date; private String description; private Double value; private Double tax; public String getDate() { return date; } public void setDate(String date) { this.date = date; } public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public String getMovementId() { return movementId; } public void setMovementId(String movementId) { this.movementId = movementId; } public Integer getRubricId() { return rubricId; } public void setRubricId(Integer rubricId) { this.rubricId = rubricId; } public Double getTax() { return tax; } public void setTax(Double tax) { this.tax = tax; } public String getType() { return type; } public void setType(String type) { this.type = type; } public Double getValue() { return value; } public void setValue(Double value) { this.value = value; } }