Browse Source

更新

master
huangjiajun 11 months ago
parent
commit
465273c1fc
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      db/db_fb_pay_assciation_list.go

+ 2
- 2
db/db_fb_pay_assciation_list.go View File

@@ -7,14 +7,14 @@ import (

func GetFbPayAssciationList(eg *xorm.Engine, storeId, subAppid string) *model.FbPayAssociationList {
var data model.FbPayAssociationList
get, err := eg.Where("store_id=? and sub_appid=? ", storeId, subAppid).Get(&data)
get, err := eg.Where("merchant_id=? and sub_appid=? ", storeId, subAppid).Get(&data)
if get == false || err != nil {
return nil
}
return &data
}
func SetFbPayAssciation(eg *xorm.Engine, args map[string]string) {
list := GetFbPayAssciationList(eg, args["StoreId"], args["MerchantId"])
list := GetFbPayAssciationList(eg, args["MerchantId"], args["SubAppid"])
if list != nil {
return
}


Loading…
Cancel
Save