1
2 package com.jsql.model.injection.vendor.model.yaml;
3
4 import org.apache.commons.lang3.StringUtils;
5
6 import java.io.Serializable;
7
8 public class Union implements Serializable {
9
10 private String indices = StringUtils.EMPTY;
11 private String capacity = StringUtils.EMPTY;
12 private String orderBy = StringUtils.EMPTY;
13
14 public String getIndices() {
15 return this.indices;
16 }
17
18 public void setIndices(String indices) {
19 this.indices = indices;
20 }
21
22 public String getCapacity() {
23 return this.capacity;
24 }
25
26 public void setCapacity(String capacity) {
27 this.capacity = capacity;
28 }
29
30 public String getOrderBy() {
31 return this.orderBy;
32 }
33
34 public void setOrderBy(String orderBy) {
35 this.orderBy = orderBy;
36 }
37 }