order_source.go 276 字节 原文件 审查 历史 永久链接 1 2 3 4 5 6 7 8 9 10 11 12 13 package domain import "time" // 订单数据来源值对象 type OrderSource struct { // 订单数据来源id DataSourceId int64 `json:"dataSourceId"` // 订单数据来源平台 Platform string `json:"platform"` // 创建时间 CreateAt time.Time `json:"createAt"` }