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