31 lines
1.5 KiB
XML
31 lines
1.5 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.ruoyi.oa.mapper.OaProjectScheduleDelayMapper">
|
||
|
|
|
||
|
|
<resultMap type="com.ruoyi.oa.domain.OaProjectScheduleDelay" id="OaProjectScheduleDelayResult">
|
||
|
|
<result property="delayId" column="delay_id"/>
|
||
|
|
<result property="trackId" column="track_id"/>
|
||
|
|
<result property="applyUserName" column="apply_user_name"/>
|
||
|
|
<result property="applyTime" column="apply_time"/>
|
||
|
|
<result property="applyReason" column="apply_reason"/>
|
||
|
|
<result property="originalEndTime" column="original_end_time"/>
|
||
|
|
<result property="expectEndTime" column="expect_end_time"/>
|
||
|
|
<result property="approveUserName" column="approve_user_name"/>
|
||
|
|
<result property="approveTime" column="approve_time"/>
|
||
|
|
<result property="approveResult" column="approve_result"/>
|
||
|
|
<result property="approveRemark" column="approve_remark"/>
|
||
|
|
<result property="delayStatus" column="delay_status"/>
|
||
|
|
<result property="createBy" column="create_by"/>
|
||
|
|
<result property="createTime" column="create_time"/>
|
||
|
|
<result property="updateBy" column="update_by"/>
|
||
|
|
<result property="updateTime" column="update_time"/>
|
||
|
|
<result property="delFlag" column="del_flag"/>
|
||
|
|
<result property="remark" column="remark"/>
|
||
|
|
</resultMap>
|
||
|
|
<select id="selectVoPagePlus" resultType="com.ruoyi.oa.domain.vo.OaProjectScheduleDelayVo"></select>
|
||
|
|
|
||
|
|
|
||
|
|
</mapper>
|