2026-06-30 10:01:18 +08:00
|
|
|
<?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.klp.system.mapper.SysFileMapper">
|
|
|
|
|
|
|
|
|
|
<resultMap type="com.klp.system.domain.SysFile" id="SysFileResult">
|
|
|
|
|
<result property="fileId" column="file_id"/>
|
|
|
|
|
<result property="fileName" column="file_name"/>
|
|
|
|
|
<result property="filePath" column="file_path"/>
|
|
|
|
|
<result property="fileSize" column="file_size"/>
|
|
|
|
|
<result property="suffix" column="suffix"/>
|
|
|
|
|
<result property="orderNo" column="order_no"/>
|
|
|
|
|
<result property="dept" column="dept"/>
|
|
|
|
|
<result property="fileType" column="file_type"/>
|
|
|
|
|
<result property="scopeType" column="scope_type"/>
|
|
|
|
|
<result property="remark" column="remark"/>
|
2026-07-04 09:40:48 +08:00
|
|
|
<result property="viewCount" column="view_count"/>
|
2026-06-30 10:01:18 +08:00
|
|
|
<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"/>
|
|
|
|
|
</resultMap>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</mapper>
|