12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- package service
- import (
- "iot_manager_service/app/device/dao"
- "iot_manager_service/app/system/service"
- "iot_manager_service/util/common"
- "iot_manager_service/util/logger"
- "time"
- )
- var OnDemandSensorService = new(onDemandSensorService)
- type onDemandSensorService struct{}
- func (s *onDemandSensorService) Get(id int) (*dao.OnDemandSensor, *common.Errors) {
- // 创建查询实例
- device := &dao.OnDemandSensor{
- ID: id,
- }
- err := device.GetDevice()
- if err != nil {
- return nil, common.FailResponse(err.Error(), nil)
- }
- return device, nil
- }
- func (s *onDemandSensorService) CreateOrUpdate(userId int, tenantId string, req dao.OnDemandSensor) *common.Errors {
- // 创建查询实例
- device := req
- device.TenantId = tenantId
- if req.ID == 0 {
- device.CreateTime = time.Now()
- device.CreateUser = userId
- if device.IsExistedBySN() {
- logger.Logger.Errorf("Create GetDeviceID err \n")
- return common.ParamsInvalidResponse("编码不能重复,请重新填写!", nil)
- }
- if err := device.Create(); err != nil {
- logger.Logger.Errorf("Create err = %s \n", err.Error())
- return common.FailResponse(err.Error(), nil)
- }
- service.OperationHisService.Save(userId, tenantId, common.OperationCreate, common.ModuleTypeDevice,
- common.DeviceTypeOnDemandSensor, common.GetDeviceObject(device.ID, device.Name), common.OperationSuccess)
- return common.SuccessResponse(common.Succeeded, nil)
- }
- device.UpdateUser = userId
- device.UpdateTime = time.Now()
- if device.IsExistedByNameAndCode() {
- return common.ParamsInvalidResponse("编码不能重复,请重新填写!", nil)
- }
- if err := device.Update(); err != nil {
- logger.Logger.Errorf("Update err = %s \n", err.Error())
- return common.FailResponse(err.Error(), nil)
- }
- service.OperationHisService.Save(userId, tenantId, common.OperationUpdate, common.ModuleTypeDevice,
- common.DeviceTypeOnDemandSensor, common.GetDeviceObject(device.ID, device.Name), common.OperationSuccess)
- return common.SuccessResponse(common.Succeeded, nil)
- }
- func (s *onDemandSensorService) List(searchValue string, current, size int) ([]dao.OnDemandSensor, int64, *common.Errors) {
- device := dao.OnDemandSensor{}
- if searchValue != "" {
- device.SN = searchValue
- device.Name = searchValue
- }
- offset := (current - 1) * size
- limit := size
- devices, total, err := device.GetDevices(offset, limit)
- if err != nil {
- return nil, 0, common.FailResponse(err.Error(), nil)
- }
- return devices, total, nil
- }
- func (s *onDemandSensorService) Remove(userId int, tenantId string, id int) *common.Errors {
- // 创建查询实例
- device := &dao.OnDemandSensor{
- ID: id,
- IsDeleted: 1,
- UpdateUser: userId,
- UpdateTime: time.Now(),
- }
- err := device.Delete()
- if err != nil {
- return common.FailResponse(err.Error(), nil)
- }
- service.OperationHisService.Save(userId, tenantId, common.OperationRemove, common.ModuleTypeDevice,
- common.DeviceTypeOnDemandSensor, common.GetDeviceObject(device.ID, device.Name), common.OperationSuccess)
- return nil
- }
|