You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
service/supply/supply.go

18 lines
311 B

2 years ago
package supply
2 years ago
import (
"git.oa00.com/supply-chain/service/supply/channel"
"git.oa00.com/supply-chain/service/supply/setting"
)
2 years ago
type Supply struct {
2 years ago
Brand brand
Category category
2 years ago
Sku sku
SkuAudit skuAudit
Channel channel.Channel
2 years ago
Setting setting.Setting
Order order
2 years ago
Source sourceRpc
2 years ago
}