瀏覽代碼

更新

master
huangjiajun 11 月之前
父節點
當前提交
465273c1fc
共有 1 個檔案被更改,包括 2 行新增2 行删除
  1. +2
    -2
      db/db_fb_pay_assciation_list.go

+ 2
- 2
db/db_fb_pay_assciation_list.go 查看文件

@@ -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…
取消
儲存