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

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