All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.swiftboot.web.result.DefaultClassifiedCountResult Maven / Gradle / Ivy

There is a newer version: 2.4.7
Show newest version
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