businessTacticsService.go 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. package service
  2. import (
  3. "errors"
  4. systemService "iot_manager_service/app/system/service"
  5. "iot_manager_service/app/warn/dao"
  6. "iot_manager_service/app/warn/model"
  7. "strconv"
  8. )
  9. //业务 策略 告警 TODO: 这里需要对接边缘接口
  10. var BusinessTacticsService = new(businessTacticsService)
  11. type businessTacticsService struct{}
  12. func (s businessTacticsService) GetList(tenantId string, filter model.RequestBusinessTacticFilter) ([]dao.BusinessTactics, int64, error) {
  13. tactics := dao.BusinessTactics{TenantId: tenantId}
  14. businessTactics, i, err := tactics.Gets(filter)
  15. for i2, tactic := range businessTactics {
  16. idStr := strconv.Itoa(tactic.DeviceType)
  17. businessTactics[i2].DeviceTypeName = systemService.DictService.GetCacheDict("device_type"+idStr, "device_type", tactic.DeviceType)
  18. id2Str := strconv.Itoa(tactic.AlarmType)
  19. businessTactics[i2].AlarmTypeName = systemService.DictService.GetCacheDict("business_alarm_type2"+id2Str, "business_alarm_type2", tactic.AlarmType)
  20. }
  21. return businessTactics, i, err
  22. }
  23. func (s businessTacticsService) SaveOrUpdate(tenantId string, d model.RequestBusinessSubmit) error {
  24. MaxValue, _ := strconv.ParseFloat(d.MaxValue, 64)
  25. MinValue, _ := strconv.ParseFloat(d.MinValue, 64)
  26. Duration, _ := strconv.Atoi(d.Duration)
  27. tactics := dao.BusinessTactics{
  28. AlarmType: d.AlarmType,
  29. DeviceType: d.DeviceType,
  30. BusinessName: d.BusinessName,
  31. MaxValue: MaxValue,
  32. MinValue: MinValue,
  33. Duration: Duration,
  34. IsEnable: 1,
  35. TenantId: tenantId,
  36. }
  37. err := errors.New("default")
  38. if d.ID == 0 {
  39. err = tactics.Create()
  40. } else {
  41. if d.Status == 2 {
  42. tactics.IsEnable = 2
  43. }
  44. err = tactics.Update(d.ID)
  45. }
  46. return err
  47. }
  48. func (s businessTacticsService) Remove(tenantId string, id int) error {
  49. tactics := dao.BusinessTactics{TenantId: tenantId}
  50. return tactics.Delete(id)
  51. }