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 MiniMum int32 // 使用券金额门槛 Channel vo.Channel AvailableType vo.AvailableType AvailableDays uint32 CreateTime *time.Time UpdateTime *time.Time }