onDemandSensorService.go 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. package service
  2. import (
  3. "iot_manager_service/app/device/dao"
  4. "iot_manager_service/app/system/service"
  5. "iot_manager_service/util/common"
  6. "iot_manager_service/util/logger"
  7. "time"
  8. )
  9. var OnDemandSensorService = new(onDemandSensorService)
  10. type onDemandSensorService struct{}
  11. func (s *onDemandSensorService) Get(id int) (*dao.OnDemandSensor, *common.Errors) {
  12. // 创建查询实例
  13. device := &dao.OnDemandSensor{
  14. ID: id,
  15. }
  16. err := device.GetDevice()
  17. if err != nil {
  18. return nil, common.FailResponse(err.Error(), nil)
  19. }
  20. return device, nil
  21. }
  22. func (s *onDemandSensorService) CreateOrUpdate(userId int, tenantId string, req dao.OnDemandSensor) *common.Errors {
  23. // 创建查询实例
  24. device := req
  25. device.TenantId = tenantId
  26. if req.ID == 0 {
  27. device.CreateTime = time.Now()
  28. device.CreateUser = userId
  29. if device.IsExistedBySN() {
  30. logger.Logger.Errorf("Create GetDeviceID err \n")
  31. return common.ParamsInvalidResponse("编码不能重复,请重新填写!", nil)
  32. }
  33. if err := device.Create(); err != nil {
  34. logger.Logger.Errorf("Create err = %s \n", err.Error())
  35. return common.FailResponse(err.Error(), nil)
  36. }
  37. service.OperationHisService.Save(userId, tenantId, common.OperationCreate, common.ModuleTypeDevice,
  38. common.DeviceTypeOnDemandSensor, common.GetDeviceObject(device.ID, device.Name), common.OperationSuccess)
  39. return common.SuccessResponse(common.Succeeded, nil)
  40. }
  41. device.UpdateUser = userId
  42. device.UpdateTime = time.Now()
  43. if device.IsExistedByNameAndCode() {
  44. return common.ParamsInvalidResponse("编码不能重复,请重新填写!", nil)
  45. }
  46. if err := device.Update(); err != nil {
  47. logger.Logger.Errorf("Update err = %s \n", err.Error())
  48. return common.FailResponse(err.Error(), nil)
  49. }
  50. service.OperationHisService.Save(userId, tenantId, common.OperationUpdate, common.ModuleTypeDevice,
  51. common.DeviceTypeOnDemandSensor, common.GetDeviceObject(device.ID, device.Name), common.OperationSuccess)
  52. return common.SuccessResponse(common.Succeeded, nil)
  53. }
  54. func (s *onDemandSensorService) List(searchValue string, current, size int) ([]dao.OnDemandSensor, int64, *common.Errors) {
  55. device := dao.OnDemandSensor{}
  56. if searchValue != "" {
  57. device.SN = searchValue
  58. device.Name = searchValue
  59. }
  60. offset := (current - 1) * size
  61. limit := size
  62. devices, total, err := device.GetDevices(offset, limit)
  63. if err != nil {
  64. return nil, 0, common.FailResponse(err.Error(), nil)
  65. }
  66. return devices, total, nil
  67. }
  68. func (s *onDemandSensorService) Remove(userId int, tenantId string, id int) *common.Errors {
  69. // 创建查询实例
  70. device := &dao.OnDemandSensor{
  71. ID: id,
  72. IsDeleted: 1,
  73. UpdateUser: userId,
  74. UpdateTime: time.Now(),
  75. }
  76. err := device.Delete()
  77. if err != nil {
  78. return common.FailResponse(err.Error(), nil)
  79. }
  80. service.OperationHisService.Save(userId, tenantId, common.OperationRemove, common.ModuleTypeDevice,
  81. common.DeviceTypeOnDemandSensor, common.GetDeviceObject(device.ID, device.Name), common.OperationSuccess)
  82. return nil
  83. }