package cn.huge.base.common.bo; /** * @title: 经纬度实体类 * @description: 经纬度实体类 * @company: hugeinfo * @author: liyj * @time: 2021-11-05 16:51:48 * @version: 1.0.0 */ public class LngLatBO { /** * 最小经度 */ private Double minLng; /** * 最大经度 */ private Double maxLng; /** * 最小纬度 */ private Double minLat; /** * 最大纬度 */ private Double maxLat; public Double getMinLng() { return minLng; } public void setMinLng(Double minLng) { this.minLng = minLng; } public Double getMaxLng() { return maxLng; } public void setMaxLng(Double maxLng) { this.maxLng = maxLng; } public Double getMinLat() { return minLat; } public void setMinLat(Double minLat) { this.minLat = minLat; } public Double getMaxLat() { return maxLat; } public void setMaxLat(Double maxLat) { this.maxLat = maxLat; } } /** * -------------------_ooOoo_------------------- * ------------------o8888888o------------------ * ------------------88" . "88------------------ * ------------------(| -_- |)------------------ * ------------------O\ = /O------------------ * ---------------____/`---'\____--------------- * -------------.' \\| |// `.------------- * ------------/ \\||| : |||// \------------ * -----------/ _||||| -:- |||||- \----------- * -----------| | \\\ - /// | |----------- * -----------| \_| ''\---/'' | |----------- * -----------\ .-\__ `-` ___/-. /----------- * ---------___`. .' /--.--\ `. . __---------- * ------."" '< `.___\_<|>_/___.' >'"".------- * -----| | : `- \`.;`\ _ /`;.`/ - ` : | |----- * -----\ \ `-. \_ __\ /__ _/ .-` / /----- * ======`-.____`-.___\_____/___.-`____.-'====== * -------------------`=---=' * ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ * ---------佛祖保佑---hugeinfo---永无BUG---------- */