View Javadoc
1   package com.jsql.model.accessible.vendor.mysql;
2   
3   import org.apache.commons.lang3.StringUtils;
4   
5   import java.io.Serializable;
6   
7   public class AddFile implements Serializable {
8   
9       private String queryBody = StringUtils.EMPTY;
10      private String netshare = StringUtils.EMPTY;
11      private TempTable tempTable = new TempTable();
12  
13      public String getQueryBody() {
14          return this.queryBody;
15      }
16  
17      public void setQueryBody(String queryBody) {
18          this.queryBody = queryBody;
19      }
20  
21      public String getNetshare() {
22          return this.netshare;
23      }
24  
25      public void setNetshare(String netshare) {
26          this.netshare = netshare;
27      }
28  
29      public TempTable getTempTable() {
30          return this.tempTable;
31      }
32  
33      public void setTempTable(TempTable tempTable) {
34          this.tempTable = tempTable;
35      }
36  }