* By supplying the same seed to the generation programs, each database is loaded with identical data and queried using identical queries.
* @return seed
**/
@JsonProperty("seed")
@ApiModelProperty(example="123.0",value="By supplying the same seed to the generation programs, each database is loaded with identical data and queried using identical queries.")
publicBigDecimalgetSeed(){
returnseed;
}
publicvoidsetSeed(BigDecimalseed){
this.seed=seed;
}
publicTSBSDataConfigscale(BigDecimalscale){
this.scale=scale;
returnthis;
}
/**
* TODO
* @return scale
**/
@JsonProperty("scale")
@ApiModelProperty(example="1000.0",value="TODO")
publicBigDecimalgetScale(){
returnscale;
}
publicvoidsetScale(BigDecimalscale){
this.scale=scale;
}
publicTSBSDataConfigstartTime(StringstartTime){
this.startTime=startTime;
returnthis;
}
/**
* starting timestamp for generating the data
* @return startTime
**/
@JsonProperty("startTime")
@ApiModelProperty(example="2016-01-01T00:00:00Z",value="starting timestamp for generating the data")
publicStringgetStartTime(){
returnstartTime;
}
publicvoidsetStartTime(StringstartTime){
this.startTime=startTime;
}
publicTSBSDataConfigendTime(StringendTime){
this.endTime=endTime;
returnthis;
}
/**
* ending timestamp for generating the data
* @return endTime
**/
@JsonProperty("endTime")
@ApiModelProperty(example="2016-01-04T00:00:00Z",value="ending timestamp for generating the data")