23 lines
436 B
Go
23 lines
436 B
Go
package bo
|
||
|
||
import (
|
||
"time"
|
||
"voucher/internal/biz/vo"
|
||
)
|
||
|
||
// OrderNotifyBo 领域实体Bo结构,字段和模型字段保持一致
|
||
type OrderNotifyBo struct {
|
||
ID uint64
|
||
OrderNo string
|
||
Status vo.OrderNotifyStatus
|
||
Request string
|
||
Event vo.OrderNotifyEvent
|
||
Channel vo.Channel
|
||
Type vo.OrderType
|
||
Responses string
|
||
Remark string
|
||
NotifyUrl string
|
||
CreateTime *time.Time
|
||
UpdateTime *time.Time
|
||
}
|