xufenglei
2018-07-20 d8680e96da9c51f22fae430fc493f110cb374e5b
1
2
3
4
5
6
7
8
9
10
11
package com.moral.service;
 
import com.moral.entity.DictionaryData;
 
import java.util.List;
 
public interface DictionaryDataService {
    List<DictionaryData> queryByKey(String dictDataKey);
 
    Integer querySupperOrgId();
}