This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
package DictService
import (
"dsBigData/Business/Dict/DictDao"
"dsBigData/Business/Dict/DictModel"
)
/**
功能:获取办学类型
作者:吴缤
日期:2020-07-01
*/
func GetDictInfo(dictKind string) ([]DictModel.Dict, error) {
arr, err := DictDao.GetDictInfo(dictKind)
return arr, err
}