This commit is contained in:
2025-11-05 14:28:35 +08:00
parent d6fb143ac8
commit e2bb5ac6bc
21 changed files with 532 additions and 58 deletions

View File

@ -0,0 +1,15 @@
package com.yj.earth.params;
import com.yj.earth.annotation.SourceType;
import lombok.Data;
@Data
@SourceType("arcgisBlueImagery")
public class ArcgisBlueImagery {
private String id;
private String name;
private Boolean show;
private Integer alpha;
private Integer brightness;
private Integer layerIndex;
}