libraryService.go 764 B

1234567891011121314151617181920212223242526272829303132333435
  1. package service
  2. import (
  3. "iot_manager_service/app/multimedia/dao"
  4. "iot_manager_service/app/multimedia/model"
  5. "iot_manager_service/util/common"
  6. )
  7. var LibraryService = new(libraryService)
  8. type libraryService struct{}
  9. func (s *libraryService) List(tenantId int, searchValue string, current, size int) ([]model.LibraryDetail,
  10. *common.Errors) {
  11. library := &dao.Library{
  12. TenantId: tenantId,
  13. }
  14. offset := (current - 1) * size
  15. limit := size
  16. if searchValue != "" {
  17. library.LibName = searchValue
  18. }
  19. libraries, err := library.GetLibraries(offset, limit)
  20. if err != nil {
  21. return nil, common.FailResponse(err.Error(), nil)
  22. }
  23. var rsp []model.LibraryDetail
  24. for _, lib := range libraries {
  25. rsp = append(rsp, model.DaoToModel(lib))
  26. }
  27. return rsp, nil
  28. }