于紫祥_1901
2020-08-12 a3ff4d366c6654e5cd139f74a0104d7e9a9fa0c9
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();
}