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.
|
package service |
|
|
|
import ( |
|
"context" |
|
) |
|
|
|
// UpdateVipStatus handle user vip staus change |
|
func (s *Service) UpdateVipStatus(c context.Context, mid int64, vs int32) (err error) { |
|
s.figureDao.UpdateVipStatus(c, mid, vs) |
|
return |
|
}
|
|
|