voucher/internal/biz/bo/product_bo.go

22 lines
418 B
Go
Raw 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"
)
// ProductBo 领域实体Bo结构字段和模型字段保持一致
type ProductBo struct {
ID int32
Name string
ProductNo string
BatchName string
BatchNo string
MchId string
Channel vo.Channel
AvailableType vo.AvailableType
AvailableDays uint32
CreateTime *time.Time
UpdateTime *time.Time
}