123456789101112131415161718192021222324252627282930313233343536 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
- <mapper namespace="cn.com.taiji.tile.mapper.ShapeStyleMapper">
- <resultMap id="BaseResultMap" type="cn.com.taiji.tile.model.ShapeStyle">
- <!--@Table shape_style-->
- <id column="id" jdbcType="BIGINT" property="id" />
- <result column="layer_code" jdbcType="VARCHAR" property="layerCode" />
- <result column="layer_name" jdbcType="VARCHAR" property="layerName" />
- <result column="type" jdbcType="BOOLEAN" property="type" />
- <result column="width" jdbcType="INTEGER" property="width" />
- <result column="height" jdbcType="INTEGER" property="height" />
- <result column="color" jdbcType="VARCHAR" property="color" />
- <result column="is_fill" jdbcType="BOOLEAN" property="isFill" />
- <result column="border_color" jdbcType="VARCHAR" property="borderColor" />
- <result column="border_size" jdbcType="INTEGER" property="borderSize" />
- <result column="is_dashed" jdbcType="INTEGER" property="isDashed" />
- <result column="dash_pattern" jdbcType="VARCHAR" property="dashPattern" />
- <result column="bg_imge" jdbcType="VARCHAR" property="bgImge" />
- <result column="is_show_name" jdbcType="BOOLEAN" property="isShowName" />
- <result column="font_color" jdbcType="VARCHAR" property="fontColor" />
- <result column="font_size" jdbcType="INTEGER" property="fontSize" />
- <result column="center_point_img" jdbcType="VARCHAR" property="centerPointImg" />
- <result column="point_size" jdbcType="INTEGER" property="pointSize" />
- <result column="point_type" jdbcType="INTEGER" property="pointType" />
- <result column="point_marker_image" jdbcType="VARCHAR" property="pointMarkerImage" />
- <result column="point_marker_image_width" jdbcType="INTEGER" property="pointMarkerImageWidth" />
- <result column="point_marker_image_height" jdbcType="INTEGER" property="pointMarkerImageHeight" />
- <result column="center_point_image" jdbcType="VARCHAR" property="centerPointImage" />
- </resultMap>
- <sql id="Base_Column_List">
- id, layer_code, layer_name, `type`, width, height, color, is_fill, border_color,
- border_size, is_dashed, dash_pattern, bg_imge, is_show_name, font_color, font_size,
- center_point_img, point_size, point_type, point_marker_image, point_marker_image_width,
- point_marker_image_height, center_point_image
- </sql>
- </mapper>
|