Blame view

ProjectCopyrightMapper.xml 1.4 KB
涂亚平 committed
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 28 29 30
<?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.ProjectCopyrightMapper">

    <!-- 通用查询映射结果 -->
    <resultMap id="BaseResultMap" type="com.zhongzhi.model.ProjectCopyrightDO">
        <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="dynacomm" property="dynacomm"/>
        <result column="copyright_owner" property="copyrightOwner"/>
        <result column="right_acquisition_method" property="rightAcquisitionMethod"/>
        <result column="development_date" property="developmentDate"/>
        <result column="published_date" property="publishedDate"/>
        <result column="interest_field" property="interestField"/>
        <result column="register_number" property="registerNumber"/>
    </resultMap>

    <!-- 通用查询结果列 -->
    <sql id="Base_Column_List">
        create_time
        ,
                update_time,
                delete_time,
            id, project_id, dynacomm, copyright_owner, right_acquisition_method, development_date, published_date, interest_field, register_number
    </sql>

</mapper>