ProjectAwardMapper.xml 1.15 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.ProjectAwardMapper">

    <!-- 通用查询映射结果 -->
    <resultMap id="BaseResultMap" type="com.zhongzhi.model.ProjectAwardDO">
        <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="project_id" property="projectId"/>
        <result column="award_title" property="awardTitle"/>
        <result column="award_project_title" property="awardProjectTitle"/>
        <result column="level" property="level"/>
        <result column="prizewinner" property="prizewinner"/>
        <result column="winning_time" property="winningTime"/>
    </resultMap>

    <!-- 通用查询结果列 -->
    <sql id="Base_Column_List">
        create_time,
        update_time,
        delete_time,
        id, project_id, award_title, award_project_title, level, prizewinner, winning_time
    </sql>

</mapper>