|
|
@@ -0,0 +1,60 @@
|
|
|
+package es.uv.saic.shared.dto;
|
|
|
+
|
|
|
+import es.uv.saic.shared.domain.InstanciaTascaTransfer;
|
|
|
+
|
|
|
+public class InstanciaTascaPlantillaDTO {
|
|
|
+ private InstanciaTascaDTO it;
|
|
|
+ private InstanciaTascaTransfer itt;
|
|
|
+ private boolean active;
|
|
|
+ Integer titulacio;
|
|
|
+ String tambit;
|
|
|
+
|
|
|
+ public InstanciaTascaPlantillaDTO(InstanciaTascaDTO it, InstanciaTascaTransfer itt, boolean active, Integer titulacio, String tambit) {
|
|
|
+ this.it = it;
|
|
|
+ this.itt = itt;
|
|
|
+ this.active = active;
|
|
|
+ this.titulacio = titulacio;
|
|
|
+ this.tambit = tambit;
|
|
|
+ }
|
|
|
+
|
|
|
+ public InstanciaTascaDTO getIt() {
|
|
|
+ return it;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setIt(InstanciaTascaDTO it) {
|
|
|
+ this.it = it;
|
|
|
+ }
|
|
|
+
|
|
|
+ public InstanciaTascaTransfer getItt() {
|
|
|
+ return itt;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setItt(InstanciaTascaTransfer itt) {
|
|
|
+ this.itt = itt;
|
|
|
+ }
|
|
|
+
|
|
|
+ public boolean isActive() {
|
|
|
+ return active;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setActive(boolean active) {
|
|
|
+ this.active = active;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getTitulacio() {
|
|
|
+ return titulacio;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTitulacio(Integer titulacio) {
|
|
|
+ this.titulacio = titulacio;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getTambit() {
|
|
|
+ return tambit;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTambit(String tambit) {
|
|
|
+ this.tambit = tambit;
|
|
|
+ }
|
|
|
+
|
|
|
+}
|