智盟项目
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.

16 lignes
273 B

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