23 lines
497 B
Go
23 lines
497 B
Go
package bo
|
||
|
||
import (
|
||
"time"
|
||
"voucher/internal/biz/vo"
|
||
)
|
||
|
||
// OrderWechatBo 领域实体Bo结构,字段和模型字段保持一致
|
||
type OrderWechatBo struct {
|
||
ID uint64
|
||
OrderNo string
|
||
OutRequestNo string
|
||
AppID string
|
||
StockCreatorMchid string
|
||
OpenID string
|
||
StockID string
|
||
Status vo.OrderWechatStatus
|
||
CouponID string
|
||
Remark string
|
||
CreateTime *time.Time
|
||
UpdateTime *time.Time
|
||
}
|