Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- package platform
-
- import (
- offical "applet/app/db/official"
- "applet/app/utils"
- )
-
- func AppUserListPuid(mid string) string {
- appList := offical.GetUserAppList(mid)
- uid := "0"
- if appList != nil && appList.Puid > 0 {
- uid = utils.IntToStr(appList.Puid)
- }
- return uid
- }
|