<?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="com.ycl.mapper.caseHandler.IllegalBuildingMapper">
|
|
<!-- 通用查询映射结果 -->
|
<resultMap id="BaseResultMap" type="com.ycl.entity.caseHandler.IllegalBuilding">
|
<id column="base_case_id" property="baseCaseId" />
|
<result column="category_id" property="categoryId" />
|
<result column="party_name" property="partyName" />
|
<result column="party_id_card" property="partyIdCard" />
|
<result column="party_phone" property="partyPhone" />
|
<result column="positive" property="positive" />
|
<result column="negative" property="negative" />
|
<result column="position" property="position" />
|
<result column="building_length" property="buildingLength" />
|
<result column="building_width" property="buildingWidth" />
|
<result column="building_high" property="buildingHigh" />
|
<result column="building_area" property="buildingArea" />
|
<result column="materials" property="materials" />
|
</resultMap>
|
|
<!-- 通用查询结果列 -->
|
<sql id="Base_Column_List">
|
base_case_id, category_id, party_name, party_id_card, party_phone, positive, negative, position, building_length, building_width, building_high, building_area, materials
|
</sql>
|
|
</mapper>
|