jinpengyong
2020-08-06 9880d87f87b074b45150a66867c0d1870e6cb3e2
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();
}