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) }