lizijie
2019-07-10 e97c393e23f4c015a44b5fef5fd26ae288bc6c0f
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();
}