燕山石化溯源三维电子沙盘-【后端】-服务
1
13693261870
2023-07-21 58cb215b67a5bf50fba0d63969f40711fc23135c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.yssh.mapper;
 
import java.util.List;
 
import com.yssh.entity.ExpPoint;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
 
@Mapper
public interface ExpPointMapper {
 
    List<ExpPoint> selectList();
    
    List<ExpPoint> selectByExpSiteNumbers(@Param("expSiteNumbers") List<String> expSiteNumbers);
}