wl
2022-10-24 9969bea2a8c1eab64c12a51a2d24d65e5b6c0dd0
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
<?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.InvestigationMapper">
 
    <!-- 通用查询映射结果 -->
    <resultMap id="BaseResultMap" type="com.ycl.entity.caseHandler.Investigation">
        <id column="id" property="id" />
        <result column="base_case_id" property="baseCaseId" />
        <result column="undertaker" property="undertaker" />
        <result column="assistant" property="assistant" />
        <result column="investigation_time" property="investigationTime" />
        <result column="address" property="address" />
        <result column="case_action" property="caseAction" />
        <result column="party_id" property="partyId" />
        <result column="description" property="description" />
        <result column="pic" property="pic" />
        <result column="create_user" property="createUser" />
        <result column="create_time" property="createTime" />
    </resultMap>
 
    <!-- 通用查询结果列 -->
    <sql id="Base_Column_List">
        id, base_case_id, undertaker, assistant, investigation_time, address, case_action, party_id, description, pic, create_user, create_time
    </sql>
 
</mapper>