自动化立体仓库 - WCS系统
*
lsh
2025-04-10 b6cec9be5a055f9c254e2158b6556acb9700bc90
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package com.zy.asrs.mapper;
 
import com.zy.asrs.entity.ApiConfig;
import com.baomidou.mybatisplus.mapper.BaseMapper;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
 
import java.util.List;
 
@Mapper
@Repository
public interface ApiConfigMapper extends BaseMapper<ApiConfig> {
 
    ApiConfig selectByUrl(String url);
 
    List<ApiConfig> selectApiConfigList(
            @Param("id") Long id,
            @Param("url") String url,
            @Param("pageNumber") Integer curr,
            @Param("pageSize") Integer limit
    );
    Long selectApiConfigListTotal(
            @Param("id") Long id,
            @Param("url") String url
    );
 
}