lightConditionService.go 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. package service
  2. import (
  3. "iot_manager_service/app/device/dao"
  4. "iot_manager_service/util/common"
  5. "time"
  6. )
  7. // 灯控策略服务
  8. var LightConditionService = new(lightConditionService)
  9. type lightConditionService struct{}
  10. func (s *lightConditionService) Get(id int) (*dao.LightCondition, *common.Errors) {
  11. // 创建查询实例
  12. condition := &dao.LightCondition{
  13. ID: id,
  14. }
  15. err := condition.Get()
  16. if err != nil {
  17. return nil, common.FailResponse(err.Error(), nil)
  18. }
  19. return condition, nil
  20. }
  21. func (s *lightConditionService) BatchGet(ids []int) []dao.LightCondition {
  22. // 创建查询实例
  23. condition := &dao.LightCondition{}
  24. conditions, err := condition.BatchGet(ids)
  25. if err != nil {
  26. return nil
  27. }
  28. return conditions
  29. }
  30. func (s *lightConditionService) CreateOrUpdate(req dao.LightCondition) *common.Errors {
  31. return nil
  32. }
  33. func (s *lightConditionService) Remove(userId int, id int) *common.Errors {
  34. // 创建查询实例
  35. device := &dao.Gateway{
  36. ID: id,
  37. IsDeleted: 1,
  38. UpdateUser: userId,
  39. UpdateTime: time.Now(),
  40. }
  41. err := device.Delete()
  42. if err != nil {
  43. return common.FailResponse(err.Error(), nil)
  44. }
  45. return nil
  46. }
  47. func (s *lightConditionService) Save(conditions []dao.LightCondition, lightId int) error {
  48. condition := &dao.LightCondition{}
  49. return condition.Save(conditions, lightId)
  50. }