icart_dal.go 295 B

123456789101112
  1. package dal
  2. import (
  3. "xiaoniaokuaiyan.com/xiaoniao/entity"
  4. )
  5. type ICart interface {
  6. Get(customId int) ([]entity.ProductDB, error)
  7. Update(customId int, productId, quantity int, isAdd bool) (bool, error)
  8. Clear(customId int) (bool, error)
  9. Del(customId int, productIds []int) (bool, error)
  10. }