16 lines
333 B
Java
16 lines
333 B
Java
|
|
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;
|
||
|
|
}
|