MatchCollegeCountDAO.xml 1.04 KB
<?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.zhongzhi.dao.MatchCollegeCountDAO">

        <!-- 通用查询映射结果 -->
        <resultMap id="BaseResultMap" type="com.zhongzhi.model.MatchCollegeCountDO">
                    <id column="id" property="id"/>
                <result column="create_time" property="createTime"/>
                <result column="update_time" property="updateTime"/>
                <result column="delete_time" property="deleteTime"/>
                    <result column="match_id" property="matchId"/>
                    <result column="college_name" property="collegeName"/>
                    <result column="apply_cnt" property="applyCnt"/>
        </resultMap>

        <!-- 通用查询结果列 -->
        <sql id="Base_Column_List">
                create_time,
                update_time,
                delete_time,
            id, match_id, college_name, apply_cnt
        </sql>

</mapper>