| | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * 数简.创建图层类 |
| | | * @author WWW |
| | | * @date 2023-08-30 |
| | | */ |
| | | @SuppressWarnings("AlibabaLowerCamelCaseVariableNaming") |
| | | public class CreateLayerEntity implements Serializable { |
| | | private static final long serialVersionUID = 8392354493626395905L; |
| | | |
| | | /** |
| | | * 图层信息 |
| | | */ |
| | | private Layer layer; |
| | | |
| | | /** |
| | | * 影像目录列表 |
| | | */ |
| | | private List<ImagePathList> image_path_list; |
| | | |
| | | /** |
| | | * 金字塔配置 |
| | | */ |
| | | private ImageOvr image_ovr; |
| | | |
| | | /** |
| | | * 创建服务 |
| | | */ |
| | | private Integer create_service; |
| | | |
| | | public CreateLayerEntity() { |
| | |
| | | this.create_service = create_service; |
| | | } |
| | | |
| | | /** |
| | | * 图层信息 |
| | | */ |
| | | public class Layer { |
| | | /** |
| | | * 名称 |
| | | */ |
| | | private String name; |
| | | |
| | | /** |