package bo import ( "time" "voucher/internal/biz/vo" ) // ProductBo 领域实体Bo结构,字段和模型字段保持一致 type ProductBo struct { ID int32 Name string ProductNo string BatchName string BatchNo string ActivityId string MchId string Channel vo.Channel AvailableType vo.AvailableType AvailableDays uint32 Amount int64 AllBudget int64 AvailableBudget int64 WarningBudget int64 WarningPerson string StartTime *time.Time EndTime *time.Time CreateTime *time.Time UpdateTime *time.Time }