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 TempTable implements Serializable { 8 9 private String drop = StringUtils.EMPTY; 10 private String add = StringUtils.EMPTY; 11 private String fill = StringUtils.EMPTY; 12 13 public String getDrop() { 14 return this.drop; 15 } 16 17 public void setDrop(String drop) { 18 this.drop = drop; 19 } 20 21 public String getAdd() { 22 return this.add; 23 } 24 25 public void setAdd(String add) { 26 this.add = add; 27 } 28 29 public String getFill() { 30 return this.fill; 31 } 32 33 public void setFill(String fill) { 34 this.fill = fill; 35 } 36 }