zhanghua
2023-09-08 7ef4892f9f24f941aca37e6b3991b808a0aca619
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?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>