perform-service_broken/src/main/java/org/gcube/application/perform/service/engine/model/anagraphic/Batch.java

57 lines
978 B
Java

package org.gcube.application.perform.service.engine.model.anagraphic;
public class Batch {
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public String getUuid() {
return uuid;
}
public void setUuid(String uuid) {
this.uuid = uuid;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public Long getFarmId() {
return farmId;
}
public void setFarmId(Long farmId) {
this.farmId = farmId;
}
public Batch() {
// TODO Auto-generated constructor stub
}
public Batch(Long id, String uuid, String name, String type, Long farmId) {
super();
this.id = id;
this.uuid = uuid;
this.name = name;
this.type = type;
this.farmId = farmId;
}
private Long id;
private String uuid;
private String name;
private String type;
private Long farmId;
}