package bo import "time" // ProductBo 领域实体Bo结构,字段和模型字段保持一致 type ProductBo struct { ID int32 Name string ProductNo string BatchName string BatchNo string AppID string MerchantNo string Channel bool CreateTime time.Time UpdateTime time.Time }