|
@@ -0,0 +1,103 @@
|
|
|
+package service
|
|
|
+
|
|
|
+import (
|
|
|
+ "fmt"
|
|
|
+ "iot_manager_service/app/dao"
|
|
|
+ "iot_manager_service/app/utils"
|
|
|
+ "time"
|
|
|
+)
|
|
|
+
|
|
|
+var OnDemandSensorService = new(onDemandSensorService)
|
|
|
+
|
|
|
+type onDemandSensorService struct{}
|
|
|
+
|
|
|
+func (s *onDemandSensorService) Get(id int) (*dao.OnDemandSensor, *utils.Errors) {
|
|
|
+ // 创建查询实例
|
|
|
+ device := &dao.OnDemandSensor{
|
|
|
+ ID: id,
|
|
|
+ }
|
|
|
+ err := device.GetDevice()
|
|
|
+ if err != nil {
|
|
|
+ return nil, utils.FailResponse(err.Error(), nil)
|
|
|
+ }
|
|
|
+ return device, nil
|
|
|
+
|
|
|
+}
|
|
|
+
|
|
|
+func (s *onDemandSensorService) CreateOrUpdate(req dao.OnDemandSensor) *utils.Errors {
|
|
|
+ // 创建查询实例
|
|
|
+ device := req
|
|
|
+ if req.ID == 0 {
|
|
|
+ device.CreateTime = time.Now()
|
|
|
+ device.CreateUser = "TODO" // todo: 使用登录态
|
|
|
+ if device.IsExistedBySN() {
|
|
|
+ fmt.Printf("Create GetDeviceID err \n")
|
|
|
+ return utils.ParamsInvalidResponse("编码不能重复,请重新填写!", nil)
|
|
|
+ }
|
|
|
+ if err := device.Create(); err != nil {
|
|
|
+ fmt.Printf("Create err = %s \n", err.Error())
|
|
|
+ return utils.FailResponse(err.Error(), nil)
|
|
|
+ }
|
|
|
+ return utils.SuccessResponse(utils.Succeeded, nil)
|
|
|
+ }
|
|
|
+ device.UpdateUser = "TODO" // todo: 使用登录态
|
|
|
+ device.UpdateTime = time.Now()
|
|
|
+ if device.IsExistedByNameAndCode() {
|
|
|
+ return utils.ParamsInvalidResponse("编码不能重复,请重新填写!", nil)
|
|
|
+ }
|
|
|
+
|
|
|
+ if err := device.Update(); err != nil {
|
|
|
+ fmt.Printf("Update err = %s \n", err.Error())
|
|
|
+ return utils.FailResponse(err.Error(), nil)
|
|
|
+ }
|
|
|
+
|
|
|
+ //todo operation record
|
|
|
+ return utils.SuccessResponse(utils.Succeeded, nil)
|
|
|
+}
|
|
|
+func (s *onDemandSensorService) List(searchValue string, current, size int) ([]dao.OnDemandSensor, *utils.Errors) {
|
|
|
+ device := dao.OnDemandSensor{}
|
|
|
+ if searchValue != "" {
|
|
|
+ device.SN = searchValue
|
|
|
+ device.Name = searchValue
|
|
|
+ }
|
|
|
+
|
|
|
+ offset := (current - 1) * size
|
|
|
+ limit := size
|
|
|
+ devices, err := device.GetDevices(offset, limit)
|
|
|
+ if err != nil {
|
|
|
+ return nil, utils.FailResponse(err.Error(), nil)
|
|
|
+ }
|
|
|
+ return devices, nil
|
|
|
+}
|
|
|
+func (s *onDemandSensorService) Remove(id int) *utils.Errors {
|
|
|
+ // 创建查询实例
|
|
|
+ device := &dao.OnDemandSensor{
|
|
|
+ ID: id,
|
|
|
+ IsDeleted: 1,
|
|
|
+ UpdateUser: "TODO", // todo 使用登录态
|
|
|
+ UpdateTime: time.Now(),
|
|
|
+ }
|
|
|
+ //todo
|
|
|
+ // service.transformerService.CountRelation()
|
|
|
+
|
|
|
+ //todo operation record
|
|
|
+ err := device.Delete()
|
|
|
+ if err != nil {
|
|
|
+ return utils.FailResponse(err.Error(), nil)
|
|
|
+ }
|
|
|
+ return nil
|
|
|
+}
|
|
|
+
|
|
|
+func (s *onDemandSensorService) GetList() ([]*dao.OnDemandSensor, *utils.Errors) {
|
|
|
+ // todo use redis cache
|
|
|
+ device := &dao.OnDemandSensor{
|
|
|
+ TenantID: "000000", // todo 使用登录态
|
|
|
+ IsDeleted: 0,
|
|
|
+ }
|
|
|
+ devices, err := device.GetAllDevices()
|
|
|
+ if err != nil {
|
|
|
+ return nil, utils.FailResponse(err.Error(), nil)
|
|
|
+ }
|
|
|
+
|
|
|
+ return devices, nil
|
|
|
+}
|