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

com.liuchink.chinkutils.baidu.bean.suggestion.PlaceSuggestionRespResult Maven / Gradle / Ivy

There is a newer version: 0.0.14.RELEASE
Show newest version
package com.liuchink.chinkutils.baidu.bean.suggestion;

import java.io.Serializable;
import java.util.List;

import com.alibaba.fastjson.annotation.JSONField;
import com.google.common.collect.Lists;
import com.liuchink.chinkutils.baidu.bean.BaiDuMapLocation;

import lombok.Data;

/**
 * @author liugang
 * @since 2020/9/21 16:13
 */
@Data
public class PlaceSuggestionRespResult  {
	private static final long serialVersionUID = 1676552694729262052L;

	public PlaceSuggestionRespResult() {
		this.listPlaceSuggestionRespChildren = Lists.newArrayList();
	}

	private String total;
	private String name;
	private BaiDuMapLocation location;
	private String uid;
	private String province;
	private String city;
	private String cityid;
	private String district;
	private String adcode;
	private String business;
	private String tag;
	private String address;
	@JSONField(name = "children")
	private List listPlaceSuggestionRespChildren;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy