finance
黄伟 2 years ago
parent 2bc2d1cc5d
commit 70c4574d86

@ -3,13 +3,14 @@ package batch
import ( import (
"git.oa00.com/supply-chain/service/client" "git.oa00.com/supply-chain/service/client"
"git.oa00.com/supply-chain/service/lib/bean" "git.oa00.com/supply-chain/service/lib/bean"
"git.oa00.com/supply-chain/service/supplier/batch/order"
"github.com/shopspring/decimal" "github.com/shopspring/decimal"
"golang.org/x/net/context" "golang.org/x/net/context"
) )
type Goods struct { type Goods struct {
goods goods
order Order order.Order
} }
type goods struct { type goods struct {

@ -1,4 +1,4 @@
package batch package order
import ( import (
"git.oa00.com/supply-chain/service/client" "git.oa00.com/supply-chain/service/client"
@ -6,6 +6,10 @@ import (
"golang.org/x/net/context" "golang.org/x/net/context"
) )
type Order struct {
order
}
type order struct { type order struct {
} }
Loading…
Cancel
Save