guohongjin
2024-05-15 5b7639f0bd9e056738ec15100ed0532e965c6cd5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?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.stylefeng.guns.modular.business.mapper.MentalAnalysisTimeMapper">
 
    <!-- 通用查询映射结果 -->
    <resultMap id="BaseResultMap" type="cn.stylefeng.guns.modular.business.entity.MentalAnalysisTime">
        <id column="id" property="id" />
        <result column="counselling_info_id" property="counsellingInfoId" />
        <result column="week_day" property="weekDay" />
        <result column="begin_time_point" property="beginTimePoint" />
        <result column="end_time_point" property="endTimePoint" />
        <result column="is_delete" property="isDelete" />
    </resultMap>
 
    <!-- 通用查询结果列 -->
    <sql id="Base_Column_List">
        id, counselling_info_id, week_day, begin_time_point, end_time_point, is_delete
    </sql>
 
</mapper>