ShapeStyleMapper.xml 2.4 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  3. <mapper namespace="cn.com.taiji.tile.mapper.ShapeStyleMapper">
  4. <resultMap id="BaseResultMap" type="cn.com.taiji.tile.model.ShapeStyle">
  5. <!--@Table shape_style-->
  6. <id column="id" jdbcType="BIGINT" property="id" />
  7. <result column="layer_code" jdbcType="VARCHAR" property="layerCode" />
  8. <result column="layer_name" jdbcType="VARCHAR" property="layerName" />
  9. <result column="type" jdbcType="BOOLEAN" property="type" />
  10. <result column="width" jdbcType="INTEGER" property="width" />
  11. <result column="height" jdbcType="INTEGER" property="height" />
  12. <result column="color" jdbcType="VARCHAR" property="color" />
  13. <result column="is_fill" jdbcType="BOOLEAN" property="isFill" />
  14. <result column="border_color" jdbcType="VARCHAR" property="borderColor" />
  15. <result column="border_size" jdbcType="INTEGER" property="borderSize" />
  16. <result column="is_dashed" jdbcType="INTEGER" property="isDashed" />
  17. <result column="dash_pattern" jdbcType="VARCHAR" property="dashPattern" />
  18. <result column="bg_imge" jdbcType="VARCHAR" property="bgImge" />
  19. <result column="is_show_name" jdbcType="BOOLEAN" property="isShowName" />
  20. <result column="font_color" jdbcType="VARCHAR" property="fontColor" />
  21. <result column="font_size" jdbcType="INTEGER" property="fontSize" />
  22. <result column="center_point_img" jdbcType="VARCHAR" property="centerPointImg" />
  23. <result column="point_size" jdbcType="INTEGER" property="pointSize" />
  24. <result column="point_type" jdbcType="INTEGER" property="pointType" />
  25. <result column="point_marker_image" jdbcType="VARCHAR" property="pointMarkerImage" />
  26. <result column="point_marker_image_width" jdbcType="INTEGER" property="pointMarkerImageWidth" />
  27. <result column="point_marker_image_height" jdbcType="INTEGER" property="pointMarkerImageHeight" />
  28. <result column="center_point_image" jdbcType="VARCHAR" property="centerPointImage" />
  29. </resultMap>
  30. <sql id="Base_Column_List">
  31. id, layer_code, layer_name, `type`, width, height, color, is_fill, border_color,
  32. border_size, is_dashed, dash_pattern, bg_imge, is_show_name, font_color, font_size,
  33. center_point_img, point_size, point_type, point_marker_image, point_marker_image_width,
  34. point_marker_image_height, center_point_image
  35. </sql>
  36. </mapper>