|
@@ -9,7 +9,6 @@ import (
|
|
"iot_manager_service/app/operation/edge_service"
|
|
"iot_manager_service/app/operation/edge_service"
|
|
operationModel "iot_manager_service/app/operation/model"
|
|
operationModel "iot_manager_service/app/operation/model"
|
|
"iot_manager_service/util/common"
|
|
"iot_manager_service/util/common"
|
|
- "strconv"
|
|
|
|
"time"
|
|
"time"
|
|
)
|
|
)
|
|
|
|
|
|
@@ -18,7 +17,7 @@ var WorkbenchService = new(workbenchService)
|
|
|
|
|
|
type workbenchService struct{}
|
|
type workbenchService struct{}
|
|
|
|
|
|
-func (s *workbenchService) CountDevice(tenantId int) ([]dao.CountDevice, *common.Errors) {
|
|
|
|
|
|
+func (s *workbenchService) CountDevice(tenantId string) ([]dao.CountDevice, *common.Errors) {
|
|
counts, err := dao.GetDeviceCount(tenantId)
|
|
counts, err := dao.GetDeviceCount(tenantId)
|
|
if err != nil {
|
|
if err != nil {
|
|
return nil, common.FailResponse(err.Error(), nil)
|
|
return nil, common.FailResponse(err.Error(), nil)
|
|
@@ -26,7 +25,7 @@ func (s *workbenchService) CountDevice(tenantId int) ([]dao.CountDevice, *common
|
|
return counts, nil
|
|
return counts, nil
|
|
}
|
|
}
|
|
|
|
|
|
-func (s *workbenchService) CountAlarm(tenantId int) (*dao.CountAlarm, *common.Errors) {
|
|
|
|
|
|
+func (s *workbenchService) CountAlarm(tenantId string) (*dao.CountAlarm, *common.Errors) {
|
|
count, err := dao.GetAlarmCount(tenantId)
|
|
count, err := dao.GetAlarmCount(tenantId)
|
|
if err != nil {
|
|
if err != nil {
|
|
return nil, common.FailResponse(err.Error(), nil)
|
|
return nil, common.FailResponse(err.Error(), nil)
|
|
@@ -34,7 +33,7 @@ func (s *workbenchService) CountAlarm(tenantId int) (*dao.CountAlarm, *common.Er
|
|
return count, nil
|
|
return count, nil
|
|
}
|
|
}
|
|
|
|
|
|
-func (s *workbenchService) CountJobTodo(tenantId int) (*dao.CountAlarm, *common.Errors) {
|
|
|
|
|
|
+func (s *workbenchService) CountJobTodo(tenantId string) (*dao.CountAlarm, *common.Errors) {
|
|
count, err := dao.GetAlarmCount(tenantId)
|
|
count, err := dao.GetAlarmCount(tenantId)
|
|
if err != nil {
|
|
if err != nil {
|
|
return nil, common.FailResponse(err.Error(), nil)
|
|
return nil, common.FailResponse(err.Error(), nil)
|
|
@@ -42,7 +41,7 @@ func (s *workbenchService) CountJobTodo(tenantId int) (*dao.CountAlarm, *common.
|
|
return count, nil
|
|
return count, nil
|
|
}
|
|
}
|
|
|
|
|
|
-func (s *workbenchService) Notification(tenantId int) (*dao.Notification, *common.Errors) {
|
|
|
|
|
|
+func (s *workbenchService) Notification(tenantId string) (*dao.Notification, *common.Errors) {
|
|
notification, err := dao.GetNotification(tenantId)
|
|
notification, err := dao.GetNotification(tenantId)
|
|
if err != nil {
|
|
if err != nil {
|
|
return nil, common.FailResponse(err.Error(), nil)
|
|
return nil, common.FailResponse(err.Error(), nil)
|
|
@@ -50,7 +49,7 @@ func (s *workbenchService) Notification(tenantId int) (*dao.Notification, *commo
|
|
return notification, nil
|
|
return notification, nil
|
|
}
|
|
}
|
|
|
|
|
|
-func (s *workbenchService) LightRate(tenantId int, req model.ReqLightRates) (*model.RspLightRate, *common.Errors) {
|
|
|
|
|
|
+func (s *workbenchService) LightRate(tenantId string, req model.ReqLightRates) (*model.RspLightRate, *common.Errors) {
|
|
|
|
|
|
var list []operationModel.ResponseLightingRate
|
|
var list []operationModel.ResponseLightingRate
|
|
var err error
|
|
var err error
|
|
@@ -93,7 +92,7 @@ func (s *workbenchService) LightRate(tenantId int, req model.ReqLightRates) (*mo
|
|
}
|
|
}
|
|
|
|
|
|
//工作台-采集点
|
|
//工作台-采集点
|
|
-func (s *workbenchService) Aqi(tenantId int) (interface{}, interface{}) {
|
|
|
|
|
|
+func (s *workbenchService) Aqi(tenantId string) (interface{}, interface{}) {
|
|
aqi, err := dao.GetAqi(tenantId)
|
|
aqi, err := dao.GetAqi(tenantId)
|
|
if err != nil {
|
|
if err != nil {
|
|
return nil, common.FailResponse(err.Error(), nil)
|
|
return nil, common.FailResponse(err.Error(), nil)
|
|
@@ -129,7 +128,7 @@ func (s *workbenchService) GetNewsDate(vo *dao.OptoSensorVO) *dao.OptoSensorVO {
|
|
}
|
|
}
|
|
|
|
|
|
// getLightRateData 能耗和光照
|
|
// getLightRateData 能耗和光照
|
|
-func (s *workbenchService) getLightRateData(method string, tenantId int, req operationModel.RequestLightingRateFilter) ([]operationModel.ResponseLightingRate, error) {
|
|
|
|
|
|
+func (s *workbenchService) getLightRateData(method string, tenantId string, req operationModel.RequestLightingRateFilter) ([]operationModel.ResponseLightingRate, error) {
|
|
lightControl := operationDao.Operation{
|
|
lightControl := operationDao.Operation{
|
|
TenantId: tenantId,
|
|
TenantId: tenantId,
|
|
}
|
|
}
|
|
@@ -157,7 +156,7 @@ func (s *workbenchService) getLightRateData(method string, tenantId int, req ope
|
|
//亮灯率
|
|
//亮灯率
|
|
forLightRate := edge_service.ForLightRate{}
|
|
forLightRate := edge_service.ForLightRate{}
|
|
lightRates, err := forLightRate.GetLightRate(edge_service.ForLightRateReq{
|
|
lightRates, err := forLightRate.GetLightRate(edge_service.ForLightRateReq{
|
|
- Tenant: strconv.Itoa(tenantId),
|
|
|
|
|
|
+ Tenant: tenantId,
|
|
Start: req.StartTime,
|
|
Start: req.StartTime,
|
|
End: req.EndTime,
|
|
End: req.EndTime,
|
|
Flag: flag2,
|
|
Flag: flag2,
|