kongzy
2024-07-01 47a751cb301d05276ae5d75145d57b2d090fe4e1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.nanometer.smartlab.service;
 
import com.nanometer.smartlab.entity.BaseMetaGroup;
 
import java.util.List;
 
/**
 * Created by johnny on 17/8/21.
 */
public interface BaseMetaGroupService {
 
    public List<BaseMetaGroup> getBaseMetaGroupList();
 
    public BaseMetaGroup getBaseMetaGroupByCode(String code);
}