24 lines
1.2 KiB
XML
24 lines
1.2 KiB
XML
|
|
<?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.rzyc.mapper.EntEmRehearsalMapper">
|
||
|
|
|
||
|
|
<!-- 通用查询映射结果 -->
|
||
|
|
<resultMap id="BaseResultMap" type="com.rzyc.model.EntEmRehearsal">
|
||
|
|
<id column="ent_em_rehearsal_id" property="entEmRehearsalId" />
|
||
|
|
<result column="ent_em_rehearsal_start_time" property="entEmRehearsalStartTime" />
|
||
|
|
<result column="ent_em_rehearsal_end_time" property="entEmRehearsalEndTime" />
|
||
|
|
<result column="ent_em_rehearsal_project" property="entEmRehearsalProject" />
|
||
|
|
<result column="ent_em_rehearsal_remark" property="entEmRehearsalRemark" />
|
||
|
|
<result column="create_by" property="createBy" />
|
||
|
|
<result column="modify_by" property="modifyBy" />
|
||
|
|
<result column="create_time" property="createTime" />
|
||
|
|
<result column="modify_time" property="modifyTime" />
|
||
|
|
</resultMap>
|
||
|
|
|
||
|
|
<!-- 通用查询结果列 -->
|
||
|
|
<sql id="Base_Column_List">
|
||
|
|
ent_em_rehearsal_id, ent_em_rehearsal_start_time, ent_em_rehearsal_end_time, ent_em_rehearsal_project, ent_em_rehearsal_remark, create_by, modify_by, create_time, modify_time
|
||
|
|
</sql>
|
||
|
|
|
||
|
|
</mapper>
|