<?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.MatchScheduleDAO"> <!-- 通用查询映射结果 --> <resultMap id="BaseResultMap" type="com.zhongzhi.model.MatchScheduleDO"> <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="schedule_time" property="scheduleTime"/> <result column="explains" property="explains"/> </resultMap> <!-- 通用查询结果列 --> <sql id="Base_Column_List"> create_time, update_time, delete_time, id, match_id, schedule_time, explains </sql> </mapper>