/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package org.inbio.ara.dto.transaction; import org.inbio.ara.dto.GenericDTO; /** * * @author echinchilla */ public class TransactionTypeDTO extends GenericDTO { private Long transactionTypeId; private String name; private String description; /** * @return the transactionTypeId */ public Long getTransactionTypeId() { return transactionTypeId; } /** * @param transactionTypeId the transactionTypeId to set */ public void setTransactionTypeId(Long transactionTypeId) { this.transactionTypeId = transactionTypeId; } /** * @return the name */ public String getName() { return name; } /** * @param name the name to set */ public void setName(String name) { this.name = name; } /** * @return the description */ public String getDescription() { return description; } /** * @param description the description to set */ public void setDescription(String description) { this.description = description; } }