燕山石化溯源三维电子沙盘-【后端】-服务
1
13693261870
2023-08-10 96f46b9168482ce4d64774b0e4433be2820a97ca
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);
}