智盟项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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