skyouc
2025-01-11 645da5e4e48dd94b760ea4dcbf80e22bf2a3f33c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.zy.asrs.wms.asrs.mapper;
 
import com.zy.asrs.wms.asrs.entity.CacheSite;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
 
import java.util.List;
import java.util.Map;
 
@Mapper
@Repository
public interface CacheSiteMapper extends BaseMapper<CacheSite> {
 
    List<String> getChannelList();
 
}