voucher/internal/biz/bo/multi_notify_data_bo.go

28 lines
570 B
Go
Raw Permalink 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"
)
// MultiNotifyDataBo 领域实体Bo结构字段和模型字段保持一致
type MultiNotifyDataBo struct {
ID int64
Source string
IP string
NotifyID string
OrderNo string
OutBizNo string
CouponID string
StockID string
ConsumeAmount int32
ConsumeTime *time.Time
TransactionID string
EventType string
Status vo.WechatVoucherStatus
OriginalData string
NoticeNum int32
CreateTime *time.Time
UpdateTime *time.Time
}