1 package com.jsql.model.accessible.vendor.postgres; 2 3 import org.apache.commons.lang3.StringUtils; 4 5 import java.io.Serializable; 6 7 public class Program implements Serializable { 8 9 private String run = StringUtils.EMPTY; 10 private String getResult = StringUtils.EMPTY; 11 12 public String getRun() { 13 return this.run; 14 } 15 16 public void setRun(String run) { 17 this.run = run; 18 } 19 20 public String getGetResult() { 21 return this.getResult; 22 } 23 24 public void setGetResult(String getResult) { 25 this.getResult = getResult; 26 } 27 }