35 lines
635 B
Go
35 lines
635 B
Go
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 {
|
||
OutBizNo string
|
||
ProductNo string
|
||
Account string
|
||
AccountType vo.OrderAccountType
|
||
Channel vo.OrderChannel
|
||
}
|
||
|
||
type OrderCreateRepBo struct {
|
||
OrderNo string
|
||
}
|