瀏覽代碼

代理统一驼峰文件名

sixian 2 年之前
父節點
當前提交
32e77f716e

app/warn/controller/notice_set_contoller.go → app/warn/controller/noticeSetContoller.go


app/warn/dao/notice_record_dao.go → app/warn/dao/noticeRecordDao.go


app/warn/dao/notice_set_dao.go → app/warn/dao/noticeSetDao.go


app/warn/dao/platform_alarm_dao.go → app/warn/dao/platformAlarmDao.go


app/warn/dao/view_all_code_dao.go → app/warn/dao/viewAllCodeDao.go


app/warn/model/notice_set_model.go → app/warn/model/noticeSetModel.go


+ 0 - 7
app/warn/service/notice_set_service.go

@@ -19,7 +19,6 @@ func (s noticeSetService) GetList(tenantId int, searchValue string) ([]model.Not
 	var deviceTypeGroupsNew []model.NoticeSetRecords
 	noteiceSets := s.getNoteiceSets(tenantId)
 	for _, group := range deviceTypeGroups {
-
 		var deviceNew []model.NoticeSetRecords
 		code.DeviceType = group.DeviceType
 		devices, _ := code.GetDatasByDeviceType(searchValue)
@@ -41,11 +40,7 @@ func (s noticeSetService) GetList(tenantId int, searchValue string) ([]model.Not
 			})
 		}
 		key := strconv.Itoa(tenantId) + strconv.Itoa(2) + strconv.Itoa(group.DeviceType) + strconv.Itoa(999999)
-		//set.TenantId + strconv.Itoa(set.RType) + strconv.Itoa(set.DeviceType) + strconv.Itoa(set.DeviceId)
-		//fmt.Printf("key = %v", key)
-		//println("")
 		set := noteiceSets[key]
-		//fmt.Printf("set = %v", set)
 		deviceTypeGroupsNew = append(deviceTypeGroupsNew, model.NoticeSetRecords{
 			Rtype:                   2,
 			RtypeName:               group.DeviceTypeName + "(" + strconv.Itoa(len(deviceNew)) + "台)",
@@ -80,7 +75,6 @@ func (s noticeSetService) GetList(tenantId int, searchValue string) ([]model.Not
 			BusinessUserIds:         set.BusinessUserIds,
 		},
 	}
-	//fmt.Printf("noteiceSets = %v", noteiceSets)
 	return data, nil
 }
 
@@ -92,7 +86,6 @@ func (s noticeSetService) Update(post model.NoticeUpdateData, tenantId int) erro
 	deviceId := 999999
 	if rtype == 3 {
 		deviceId = post.DeviceID
-
 	}
 	set := dao.NoticeSet{
 		TenantId:                strconv.Itoa(tenantId),

+ 4 - 0
router/router.go

@@ -568,5 +568,9 @@ func InitRouter(engine *gin.Engine) {
 			noticeGroup.GET("/detail", warn.NoticeSet.Detail)
 			noticeGroup.GET("/getUserList", warn.NoticeSet.GetUserList)
 		}
+		sendrecordGroup := warnGroup.Group("sendrecord")
+		{
+			sendrecordGroup.GET("/list", warn.NoticeSet.List)
+		}
 	}
 }