京东商城出库

This commit is contained in:
苏尹岚
2020-09-16 09:23:29 +08:00
parent 32c45d4cec
commit 65bdfac214
2 changed files with 7 additions and 1 deletions

View File

@@ -1530,6 +1530,12 @@ func TmpGetJxBadCommentsByStoreId(ctx *jxcontext.Context, keyword string, storeI
return retVal, err
}
type GetStoreCourierMapsResult struct {
storeCourierMaps *model.StoreCourierMap
CourierAddress string `json:"courierAddress"`
CourierPhone string `json:"courierPhone"`
}
func GetStoreCourierMaps(ctx *jxcontext.Context, db *dao.DaoDB, storeID int, vendorID int) (storeCourierMaps []*model.StoreCourierMap, err error) {
cond := map[string]interface{}{
model.FieldStoreID: storeID,