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

com.liuchink.chinkutils.baidu.bean.placesearch.PlaceSearchRespResult Maven / Gradle / Ivy

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

import java.io.Serializable;

import com.alibaba.fastjson.annotation.JSONField;
import com.liuchink.chinkutils.baidu.bean.BaiDuMapLocation;

import lombok.Data;

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

	public PlaceSearchRespResult() {
		this.baiDuMapLocation = new BaiDuMapLocation();
		this.placeSearchRespDetail = new PlaceSearchRespDetail();
	}

	private String total;
	private String name;
	@JSONField(name = "location")
	private BaiDuMapLocation baiDuMapLocation;
	private String address;
	private String province;
	private String city;
	private String area;
	private String adcode;
	private String telephone;
	private String uid;
	@JSONField(name = "street_id")
	private String streetId;
	private String detail;
	@JSONField(name = "detail_info")
	private PlaceSearchRespDetail placeSearchRespDetail;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy