|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+<?xml version="1.0" encoding="UTF-8" ?>
|
|
|
2
|
+<!DOCTYPE mapper
|
|
|
3
|
+ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
4
|
+ "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
|
|
5
|
+<mapper namespace="com.ruoyi.wisdomarbitrate.mapper.FatchRuleMapper">
|
|
|
6
|
+ <resultMap id="BaseResultMap" type="com.ruoyi.wisdomarbitrate.domain.FatchRule" >
|
|
|
7
|
+ <result column="id" property="id" />
|
|
|
8
|
+ <result column="batch_number" property="batchNumber" />
|
|
|
9
|
+ <result column="file_name" property="fileName" />
|
|
|
10
|
+ <result column="start_content" property="startContent" />
|
|
|
11
|
+ <result column="end_content" property="endContent" />
|
|
|
12
|
+ </resultMap>
|
|
|
13
|
+ <select id="list" resultMap="BaseResultMap">
|
|
|
14
|
+ select * from fatch_rule where batch_number=#{batchNumber}
|
|
|
15
|
+ </select>
|
|
|
16
|
+
|
|
|
17
|
+
|
|
|
18
|
+</mapper>
|