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.

49 lines
1.1 KiB

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/DaoJoinApp"
/**
功能:获取接入系统列表
作者:黄海
时间2020-02-05
*/
func GetJoinAppList(pageInt int, limitInt int, keyword string) ([]map[string]interface{}, int32) {
return DaoJoinApp.GetJoinAppList(pageInt, limitInt, keyword)
}
/**
功能:增加接入系统的记录
作者:黄海
时间2020-02-21
*/
func AddJoinApp(systemName string, redirectUri string) bool {
return DaoJoinApp.AddJoinApp(systemName, redirectUri)
}
/**
功能:修改接入系统的记录
作者:黄海
时间2020-02-21
*/
func UpdateJoinApp(systemId string, systemName string, redirectUri string) bool {
return DaoJoinApp.UpdateJoinApp(systemId, systemName, redirectUri)
}
/**
功能删除主键为ID的接入系统
作者:黄海
时间2020-02-21
*/
func DeleteJoinAppById(systemId string) bool {
return DaoJoinApp.DeleteJoinAppById(systemId)
}
/**
功能根据appId获取接入第三方统一认证系统的信息
作者:吴缤
日期2020-03-26
*/
func GetJoinAppInfoById(appId string) map[string]interface{} {
return DaoJoinApp.GetJoinAppInfoById(appId)
}