智盟项目
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

svc_app_list.go 273 B

1年前
123456789101112131415
  1. package platform
  2. import (
  3. offical "applet/app/db/official"
  4. "applet/app/utils"
  5. )
  6. func AppUserListPuid(mid string) string {
  7. appList := offical.GetUserAppList(mid)
  8. uid := "0"
  9. if appList != nil && appList.Puid > 0 {
  10. uid = utils.IntToStr(appList.Puid)
  11. }
  12. return uid
  13. }