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

com.github.zw201913.entity.Geohash Maven / Gradle / Ivy

There is a newer version: 1.0.3
Show newest version
package com.github.zw201913.entity;

import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.ToString;

import java.util.LinkedList;
import java.util.List;

/**
 * @author zouwei
 * @className Geohash
 * @date: 2022/8/14 上午12:51
 * @description:
 */
@Data
@AllArgsConstructor
@ToString(callSuper = true)
public class Geohash extends Element {

	private String hash;


	@Override
	public List commandArgs() {
		List result = new LinkedList<>();
		result.add("HASH");
		result.add(this.hash);
		return result;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy