25 lines
1.1 KiB
XML
25 lines
1.1 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.OaReportDetailMapper">
|
||
|
|
|
||
|
|
<resultMap type="com.ruoyi.oa.domain.OaReportDetail" id="OaReportDetailResult">
|
||
|
|
<result property="id" column="id"/>
|
||
|
|
<result property="summaryId" column="summary_id"/>
|
||
|
|
<result property="deviceCode" column="device_code"/>
|
||
|
|
<result property="category" column="category"/>
|
||
|
|
<result property="deviceDescription" column="device_description"/>
|
||
|
|
<result property="reportDetail" column="report_detail"/>
|
||
|
|
<result property="ossIds" column="oss_ids"/>
|
||
|
|
<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>
|
||
|
|
|
||
|
|
|
||
|
|
</mapper>
|