<?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.ProjectOwnershipStructureDAO"> <!-- 通用查询映射结果 --> <resultMap id="BaseResultMap" type="com.zhongzhi.model.ProjectOwnershipStructureDO"> <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="shareholder_status" property="shareholderStatus"/> <result column="shareholder_name" property="shareholderName"/> <result column="shareholding_ratio" property="shareholdingRatio"/> </resultMap> <!-- 通用查询结果列 --> <sql id="Base_Column_List"> create_time, update_time, delete_time, id, project_id, shareholder_status, shareholder_name, shareholding_ratio </sql> </mapper>