skyouc
2025-07-07 2a24c69b830d9dc97a8673f5f69418e9f95f3e1b
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();
 
}