layerid
, layername
, opacity
, visible
, extent
, minResolution
, maxResolution
, source
, description
layerid
, layername
, opacity
, visible
, extent
, zIndex
, minResolution
, maxResolution
, source
, styletype
, stylevalue
, description
INSERT INTO c3gis_ol_layer_tile(
layerid
, layername
, opacity
, visible
, extent
, minResolution
, maxResolution
, source
, description
)
VALUES(
#{layerId}
, #{layerName}
, #{opacity}
, #{visible}
, #{extent, javaType=ObjectArray}
, #{maxResolution}
, #{minResolution}
, #{source, javaType=ObjectArray}
, #{description});
INSERT INTO c3gis_ol_layer_tile(
layerid
, layername
, opacity
, visible
, extent
, zIndex
, minResolution
, maxResolution
, source
, styletype
, stylevalue
, description
)
VALUES(
#{layerId}
, #{layerName}
, #{opacity}
, #{visible}
, #{extent, javaType=ObjectArray}
, #{zIndex}
, #{maxResolution}
, #{minResolution}
, #{source}
, #{styleType}
, #{styleValue}
, #{description});