| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- package es.uv.saic.dto;
- import es.uv.saic.domain.Proces;
- public class ProcesDTO {
- private Integer idProces;
- private String nomProces;
- private Integer lugar;
- private Integer lugar2;
- private String tambit;
- private Integer cursAvaluat;
- private String versio;
- private String titolCas;
- private String titolVal;
- private String ambit;
- public ProcesDTO() {
- }
-
- public ProcesDTO(Integer idProces, String nomProces, Integer lugar, Integer lugar2, String tambit,
- Integer cursAvaluat, String versio, String titolCas, String titolVal, String ambit) {
- this.idProces = idProces;
- this.nomProces = nomProces;
- this.lugar = lugar;
- this.lugar2 = lugar2;
- this.tambit = tambit;
- this.cursAvaluat = cursAvaluat;
- this.versio = versio;
- this.titolCas = titolCas;
- this.titolVal = titolVal;
- this.ambit = ambit;
- }
- public ProcesDTO(Proces proces) {
- this.idProces = proces.getIdProces();
- this.nomProces = proces.getNomProces();
- this.tambit = proces.getAmbit();
- this.cursAvaluat = proces.getCursAvaluat();
- this.versio = proces.getVersio();
- this.titolCas = proces.getTitolCas();
- this.titolVal = proces.getTitolVal();
- this.ambit = proces.getAmbit();
- }
-
- public Integer getIdProces() {
- return idProces;
- }
- public void setIdProces(Integer idProces) {
- this.idProces = idProces;
- }
- public String getNomProces() {
- return nomProces;
- }
- public Integer getLugar() {
- return lugar;
- }
- public Integer getLugar2() {
- return lugar2;
- }
- public String getTambit() {
- return tambit;
- }
- public void setNomProces(String nomProces) {
- this.nomProces = nomProces;
- }
- public void setLugar(Integer lugar) {
- this.lugar = lugar;
- }
- public void setLugar2(Integer lugar2) {
- this.lugar2 = lugar2;
- }
- public void setTambit(String tambit) {
- this.tambit = tambit;
- }
- public Integer getCursAvaluat() {
- return cursAvaluat;
- }
- public void setCursAvaluat(Integer cursAvaluat) {
- this.cursAvaluat = cursAvaluat;
- }
- public String getVersio() {
- return versio;
- }
- public void setVersio(String versio) {
- this.versio = versio;
- }
- public String getTitolVal() {
- return titolVal;
- }
- public void setTitolVal(String titolVal) {
- this.titolVal = titolVal;
- }
- public String getTitolCas() {
- return titolCas;
- }
- public void setTitolCas(String titolCas) {
- this.titolCas = titolCas;
- }
- public String getAmbit() {
- return ambit;
- }
- public void setAmbit(String ambit) {
- this.ambit = ambit;
- }
- }
|