李宇
2021-06-16 ef0487dc7bee47a60f4894ec49fa5b1e83b829b9
1
2
3
4
5
6
7
8
9
10
11
12
package com.nanometer.smartlab.dao;
 
import com.nanometer.smartlab.entity.BaseMetaGroup;
import org.springframework.dao.DataAccessException;
 
import java.util.List;
 
public interface BaseMetaGroupDao {
 
    public BaseMetaGroup getBaseMetaGroup(String id) throws DataAccessException;
    public List<BaseMetaGroup> getBaseMetaGroupList() throws DataAccessException;
}