소스 검색

更新

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
}


불러오는 중...
취소
저장