You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
510 B

This file contains ambiguous Unicode characters!

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 ServiceJoinApp
import "dsSso/Dao/DaoAppBase"
/**
功能:获取接入系统列表
作者:黄海
时间2020-02-05
*/
func GetAppBaseList(pageInt int, limitInt int, keyword string) ([]map[string]interface{}, int32) {
return DaoAppBase.GetAppBaseList(pageInt, limitInt, keyword)
}
/**
功能根据appId获取接入第三方统一认证系统的信息
作者:吴缤
日期2020-03-26
*/
func GetAppInfoById(appId string) map[string]interface{} {
return DaoAppBase.GetAppInfoById(appId)
}