milk_hall.go 730 B

123456789101112131415161718192021222324252627282930313233
  1. package backend
  2. import (
  3. "context"
  4. "encoding/json"
  5. "kpt-pasture/model"
  6. "gitee.com/xuyiping_admin/pkg/xerr"
  7. )
  8. // MilkBrand 奶厅品牌接口
  9. type MilkBrand interface {
  10. SaveData(ctx context.Context, body *model.MilkHallBody) error
  11. }
  12. func (s *StoreEntry) MilkHallOriginal(ctx context.Context, req []byte) error {
  13. body := &model.MilkHallBody{}
  14. if err := json.Unmarshal(req, body); err != nil {
  15. return xerr.WithStack(err)
  16. }
  17. var milkBrand MilkBrand
  18. switch body.Brand {
  19. case model.AFI:
  20. milkBrand = &AFIMILK{store: s}
  21. case model.GEA:
  22. milkBrand = &GEAMILK{store: s}
  23. default:
  24. return xerr.Customf("不支持的品牌: %s", body.Brand)
  25. }
  26. // 调用品牌的 SaveData 方法
  27. return milkBrand.SaveData(ctx, body)
  28. }