This commit is contained in:
苏尹岚
2021-01-26 10:26:04 +08:00
parent a1fce2b48c
commit 44e9eea0f1
4 changed files with 80 additions and 1 deletions

View File

@@ -230,3 +230,7 @@ func GetStoreListByLocation(ctx *jxcontext.Context, lng, lat float64, maxRadius
}
return storeList, err
}
func GetVendorOrgCode(ctx *jxcontext.Context, vendorID int, vendorOrgCode string) (vendorOrgs []*model.VendorOrgCode, err error) {
return dao.GetVendorOrgCode(dao.GetDB(), vendorID, vendorOrgCode)
}