类 PivotModel
- java.lang.Object
-
- org.sagacity.sqltoy.config.model.PivotModel
-
- 所有已实现的接口:
Serializable
public class PivotModel extends Object implements Serializable
- 版本:
- v1.0,Date:2013-5-17
- 作者:
- zhongxuchen
- 另请参阅:
- 序列化表格
-
-
构造器概要
构造器 构造器 说明 PivotModel()
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 String[]getCategoryCols()StringgetCategorySql()ObjectgetDefaultValue()String[]getGroupCols()String[]getStartEndCols()PivotModelsetCategoryCols(String... categoryCols)PivotModelsetCategorySql(String categorySql)PivotModelsetDefaultValue(Object defaultValue)PivotModelsetGroupCols(String... groupCols)PivotModelsetStartEndCols(String... startEndCols)
-
-
-
方法详细资料
-
getGroupCols
public String[] getGroupCols()
- 返回:
- the groupCols
-
setGroupCols
public PivotModel setGroupCols(String... groupCols)
- 参数:
groupCols- the groupCols to set
-
getCategoryCols
public String[] getCategoryCols()
- 返回:
- the categoryCols
-
setCategoryCols
public PivotModel setCategoryCols(String... categoryCols)
- 参数:
categoryCols- the categoryCols to set
-
getStartEndCols
public String[] getStartEndCols()
- 返回:
- the pivotCols
-
setStartEndCols
public PivotModel setStartEndCols(String... startEndCols)
- 参数:
startEndCols- the pivotCols to set
-
getDefaultValue
public Object getDefaultValue()
-
setDefaultValue
public PivotModel setDefaultValue(Object defaultValue)
-
getCategorySql
public String getCategorySql()
- 返回:
- the categorySql
-
setCategorySql
public PivotModel setCategorySql(String categorySql)
- 参数:
categorySql- the categorySql to set
-
-