| 123456789101112131415161718 |
- // Package postgre
- /**
- * @ File:
- * @ Date: 2021/5/11 10:35
- * @ Author: JYQ
- * @ Description:
- */
- package postgre
- type PGWx struct {
- }
- func (PGWx) VipUserWeiXinLogin(optUserId int64, objectShopId int64, jsonStr string, verfStr string) (result string, err error) {
- err = getClient().Raw("select fn_shop_group_query(? ,? ,?, ? )", optUserId, objectShopId, jsonStr, verfStr).
- Scan(&result).Error
- return
- }
|