Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
|
- 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
- }
|