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"
// OrderBo 领域实体Bo结构,字段和模型字段保持一致
type OrderBo struct {
ID int32
OrderNo string
OutBizNo string
ProductNo string
Account string
AccountType bool
Status bool
AppID string
MerchantNo string
Channel bool
CreateTime time.Time
}