32 lines
747 B
Go
32 lines
747 B
Go
package bo
|
||
|
||
import (
|
||
"time"
|
||
"voucher/internal/biz/vo"
|
||
)
|
||
|
||
// MultiNotifyLogBo 领域实体Bo结构,字段和模型字段保持一致
|
||
type MultiNotifyLogBo struct {
|
||
ID int64
|
||
MultiNotifyDataID int64
|
||
OrderNo string
|
||
OutBizNo string
|
||
CouponID string
|
||
ActivityNo string
|
||
StockID string
|
||
EventType string
|
||
Status vo.WechatVoucherStatus
|
||
ConsumeAmount int32
|
||
ConsumeTime *time.Time
|
||
TransactionID string
|
||
RequestURL string
|
||
RequestStatus int32
|
||
OriginReq string
|
||
Request string
|
||
Response string
|
||
OrderCreateTime *time.Time
|
||
CouponCreateTime *time.Time
|
||
CreateTime *time.Time
|
||
UpdateTime *time.Time
|
||
}
|