voucher/internal/biz/bo/order_bo.go

38 lines
695 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package bo
import (
"time"
"voucher/internal/biz/vo"
)
// OrderBo 领域实体Bo结构字段和模型字段保持一致
type OrderBo struct {
ID uint64
OrderNo string
OutBizNo string
ProductNo string
Account string
AccountType vo.OrderAccountType
Status vo.OrderStatus
AppID string
MerchantNo string
Channel vo.OrderChannel
CreateTime *time.Time
UpdateTime *time.Time
}
type OrderCreateReqBo struct {
OrderNo string
OutBizNo string
ProductNo string
Account string
AccountType vo.OrderAccountType
Channel vo.OrderChannel
AppID string
MerchantNo string
}
type OrderCreateRepBo struct {
OrderNo string
}