mirror of
https://gitee.com/elegant_wings/xiongan-meeting.git
synced 2025-06-22 14:09:36 +08:00
25 lines
868 B
XML
25 lines
868 B
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.ics.admin.mapper.ApplyParkFileMapper">
|
||
|
|
||
|
<resultMap type="com.ics.admin.domain.ApplyParkFile" id="ApplyParkFilesResult">
|
||
|
<result property="id" column="id" />
|
||
|
<result property="applyParkId" column="apply_park_id" />
|
||
|
<result property="fileName" column="file_name" />
|
||
|
<result property="filePath" column="file_path" />
|
||
|
</resultMap>
|
||
|
|
||
|
<sql id="selectApplyParkFilesVo">
|
||
|
SELECT apply_park_id, file_name, file_path FROM ics_apply_park_file
|
||
|
</sql>
|
||
|
|
||
|
|
||
|
<delete id="deleteByApplyParkId" parameterType="Long">
|
||
|
DELETE FROM ics_apply_park_file WHERE apply_park_id = #{applyParkId}
|
||
|
</delete>
|
||
|
|
||
|
|
||
|
|
||
|
</mapper>
|