lightConditionService.go 996 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. package service
  2. import (
  3. "iot_manager_service/app/device/dao"
  4. "iot_manager_service/util"
  5. "time"
  6. )
  7. // 中间件管理服务
  8. var LightConditionService = new(lightConditionService)
  9. type lightConditionService struct{}
  10. func (s *lightConditionService) Get(id int) (*dao.LightCondition, *util.Errors) {
  11. // 创建查询实例
  12. condition := &dao.LightCondition{
  13. ID: id,
  14. }
  15. err := condition.Get()
  16. if err != nil {
  17. return nil, util.FailResponse(err.Error(), nil)
  18. }
  19. return condition, nil
  20. }
  21. func (s *lightConditionService) CreateOrUpdate(req dao.LightCondition) *util.Errors {
  22. return nil
  23. }
  24. func (s *lightConditionService) Remove(id int) *util.Errors {
  25. // 创建查询实例
  26. device := &dao.Gateway{
  27. ID: id,
  28. IsDeleted: 1,
  29. UpdateUser: "TODO", // todo 使用登录态
  30. UpdateTime: time.Now(),
  31. }
  32. //todo
  33. // service.gatewayService.CountRelation()
  34. //todo operation record
  35. err := device.Delete()
  36. if err != nil {
  37. return util.FailResponse(err.Error(), nil)
  38. }
  39. return nil
  40. }