package user_e import "hilo-user/resource/mysql" type ThirdPartyType = mysql.Type const ( Phone ThirdPartyType = 1 Google ThirdPartyType = 2 Facebook ThirdPartyType = 3 Apple ThirdPartyType = 4 WeChat ThirdPartyType = 5 ) type UserStatus mysql.Type const ( //正常 UserStatusNormal UserStatus = 1 //冻结 UserStatusFrozen UserStatus = 2 ) type UserVipType = mysql.Type const ( // 男 UserMan = 1 // 女 UserWomen = 2 )