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

weiboclient4j.model.PoiCategory Maven / Gradle / Ivy

The newest version!
package weiboclient4j.model;

import org.codehaus.jackson.annotate.JsonIgnoreProperties;
import org.codehaus.jackson.type.TypeReference;

import java.util.List;

/**
 * @author Hover Ruan
 */
@JsonIgnoreProperties(ignoreUnknown = true)
public class PoiCategory {
    public static final TypeReference> POI_CATEGORY_LIST = new TypeReference>() {
    };

    private String id;
    private String name;
    private String pid;

    public String getId() {
        return id;
    }

    public void setId(String id) {
        this.id = id;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getPid() {
        return pid;
    }

    public void setPid(String pid) {
        this.pid = pid;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy