wx.go 411 B

123456789101112131415161718
  1. // Package postgre
  2. /**
  3. * @ File:
  4. * @ Date: 2021/5/11 10:35
  5. * @ Author: JYQ
  6. * @ Description:
  7. */
  8. package postgre
  9. type PGWx struct {
  10. }
  11. func (PGWx) VipUserWeiXinLogin(optUserId int64, objectShopId int64, jsonStr string, verfStr string) (result string, err error) {
  12. err = getClient().Raw("select fn_shop_group_query(? ,? ,?, ? )", optUserId, objectShopId, jsonStr, verfStr).
  13. Scan(&result).Error
  14. return
  15. }