<select id="queryLayerList" resultType="com.tuimi.gwznkf.storage.entity.vo.StorageLocationVo"> SELECT DISTINCT layer_num as layerNum FROM t_shelf_section WHERE layer_num = ( SELECT MAX( layer_num ) FROM t_shelf_section WHERE 1=1 <if test="id !=-1"> and shelf_id = #{id} </if> ) <if test="id !=-1"> and shelf_id = #{id} </if> </select> mapper层该怎么写
时间: 2024-02-14 09:13:46 浏览: 69
假设这个 SQL 语句所在的命名空间为 `com.tuimi.gwznkf.storage.mapper.StorageMapper`,你可以在这个接口中定义一个方法来调用这个 SQL 语句,方法的定义可以如下所示:
```
public interface StorageMapper {
List<StorageLocationVo> queryLayerList(@Param("id") Long id);
}
```
其中 `queryLayerList` 方法使用了 `@Param` 注解来映射参数,这里只有一个参数 `id`,对应了 `<if test="id !=-1">` 中的 `#{id}`。
然后,你可以在对应的 XML 映射文件中使用 `<select>` 元素来定义 SQL 语句的映射,如下所示:
```
<select id="queryLayerList" resultType="com.tuimi.gwznkf.storage.entity.vo.StorageLocationVo">
SELECT DISTINCT
layer_num as layerNum
FROM
t_shelf_section
WHERE
layer_num = (
SELECT MAX(layer_num)
FROM t_shelf_section
WHERE 1=1
<if test="id !=-1">
and shelf_id = #{id}
</if>
)
<if test="id !=-1">
and shelf_id = #{id}
</if>
</select>
```
在 XML 映射文件中,使用 `<select>` 元素来定义 SQL 语句的映射,其中 `id` 属性对应了接口方法的名称,`resultType` 属性指定了返回值类型。在 SQL 语句中,使用 `${}` 或 `#{}` 来引用接口方法中的参数,这里使用 `#{id}` 引用了接口方法中的 `id` 参数。
最后,你就可以在代码中调用这个方法来执行 SQL 语句了。
阅读全文