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.
16 lines
387 B
16 lines
387 B
package dao |
|
|
|
import ( |
|
"context" |
|
itemv1 "go-common/app/service/openplatform/ticket-item/api/grpc/v1" |
|
) |
|
|
|
//ItemBillInfo 获取商品信息 |
|
func (d *Dao) ItemBillInfo(ctx context.Context, itemIDs []int64, scIDs []int64, tkIDs []int64) (*itemv1.BillReply, error) { |
|
req := &itemv1.BillRequest{ |
|
IDs: itemIDs, |
|
ScIDs: scIDs, |
|
TkIDs: tkIDs, |
|
} |
|
return d.itemClient.BillInfo(ctx, req) |
|
}
|
|
|