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

com.liuchink.chinkutils.baidu.bean.placesearch.PlaceSearchDetailReq 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 lombok.Data;

/**
 * @author liugang
 * @since 2022/2/8 13:25
 */
@Data
public class PlaceSearchDetailReq  {
	private static final long serialVersionUID = -4581887014222735210L;
	@JSONField(name = "uid")
	private String uid;
	@JSONField(name = "uids")
	private String uids;
	@JSONField(name = "extensions_adcode")
	private String extensionsAdcode;
	@JSONField(name = "output")
	private String output;
	@JSONField(name = "ret_coordtype")
	private String retCoordtype;
	@JSONField(name = "scope")
	private String scope;
	@JSONField(name = "ak")
	private String ak;
	@JSONField(name = "sn")
	private String sn;
	@JSONField(name = "timestamp")
	private String timestamp;
	@JSONField(name = "photo_show")
	private String photoShow;

	public PlaceSearchDetailReq() {
		this.output = "json";
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy