skyouc
2025-02-06 b4453189f458329bf9eb7ff25944b3a7bdf55574
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();
 
}