/*
|
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
|
*
|
* Redistribution and use in source and binary forms, with or without
|
* modification, are permitted provided that the following conditions are met:
|
*
|
* Redistributions of source code must retain the above copyright notice,
|
* this list of conditions and the following disclaimer.
|
* Redistributions in binary form must reproduce the above copyright
|
* notice, this list of conditions and the following disclaimer in the
|
* documentation and/or other materials provided with the distribution.
|
* Neither the name of the dreamlu.net developer nor the names of its
|
* contributors may be used to endorse or promote products derived from
|
* this software without specific prior written permission.
|
* Author: Chill 庄骞 (smallchill@163.com)
|
*/
|
package org.sxkj.fw.area.dto;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import javax.validation.constraints.NotEmpty;
|
import java.io.Serializable;
|
import java.util.List;
|
|
/**
|
* 派出所多边形区域查询 DTO
|
*
|
* @author lw
|
* @since 2026-01-29
|
*/
|
@Data
|
@ApiModel(value = "FwPoliceStationPolygonQueryDTO对象", description = "派出所多边形区域查询入参")
|
public class FwPoliceStationPolygonQueryDTO implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 多边形WKT字符串集合
|
* 格式:POLYGON((114.96898636473107 27.11156483383477,114.97972069576815 27.111564833834766,...))
|
*/
|
@NotEmpty(message = "多边形区域集合不能为空")
|
@ApiModelProperty(value = "多边形WKT字符串集合", required = true, example = "[\"POLYGON((114.96898636473107 27.11156483383477,114.97972069576815 27.111564833834766,114.97972069576815 27.120473921808035,114.96898636473107 27.120473921808035,114.96898636473107 27.11156483383477))\"]")
|
private List<String> polygons;
|
}
|