
org.swiftboot.web.result.DefaultClassifiedCountResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swiftboot-web Show documentation
Show all versions of swiftboot-web Show documentation
Basic module for enterprise web applications
package org.swiftboot.web.result;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.util.HashMap;
import java.util.Map;
/**
* 默认的按分类统计结果
*
* @author swiftech
**/
@ApiModel("Default classified counting result")
public class DefaultClassifiedCountResult implements Result{
/**
* 统计结果,按照分类的标识存储
*
*/
@ApiModelProperty(value = "Counting results map")
@JsonProperty("count_map")
private Map map = new HashMap<>();
public Map getMap() {
return map;
}
public void setMap(Map map) {
this.map = map;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy