|
@@ -5,6 +5,7 @@ import (
|
|
|
"iot_manager_service/app/dao"
|
|
|
"iot_manager_service/app/model"
|
|
|
"iot_manager_service/app/utils"
|
|
|
+ "strings"
|
|
|
"time"
|
|
|
)
|
|
|
|
|
@@ -26,6 +27,8 @@ func (s *lampPoleGroupService) Get(id int) (*dao.LampPoleGroup, *utils.Errors) {
|
|
|
}
|
|
|
|
|
|
func (s *lampPoleGroupService) CreateOrUpdate(req *dao.LampPoleGroup) *utils.Errors {
|
|
|
+ var build strings.Builder
|
|
|
+
|
|
|
device := req
|
|
|
if device.TenantId == "" {
|
|
|
device.TenantId = "000000" // todo: 使用登录态
|
|
@@ -36,15 +39,19 @@ func (s *lampPoleGroupService) CreateOrUpdate(req *dao.LampPoleGroup) *utils.Err
|
|
|
if req.ID == 0 {
|
|
|
device.CreateTime = time.Now()
|
|
|
device.CreateUser = "TODO" // todo: 使用登录态
|
|
|
-
|
|
|
+ build.WriteString("新增(灯杆分组)【" + device.PoleGroupName + "】")
|
|
|
if device.IsExistedByName() {
|
|
|
fmt.Printf("Create IsExistedByName \n")
|
|
|
return utils.ParamsInvalidResponse(model.RepeatedName, nil)
|
|
|
}
|
|
|
if err := device.Create(); err != nil {
|
|
|
fmt.Printf("Create err = %s \n", err.Error())
|
|
|
+ build.WriteString("失败")
|
|
|
+ OperationHisService.Save(model.OperationRemove, model.ModuleTypeDevice, build.String())
|
|
|
return utils.FailResponse(err.Error(), nil)
|
|
|
}
|
|
|
+ build.WriteString("成功")
|
|
|
+ OperationHisService.Save(model.OperationRemove, model.ModuleTypeDevice, build.String())
|
|
|
return utils.SuccessResponse(utils.Succeeded, nil)
|
|
|
}
|
|
|
|
|
@@ -53,10 +60,18 @@ func (s *lampPoleGroupService) CreateOrUpdate(req *dao.LampPoleGroup) *utils.Err
|
|
|
return utils.ParamsInvalidResponse(model.RepeatedName, nil)
|
|
|
}
|
|
|
|
|
|
+ build.WriteString("修改(灯杆分组)【" + device.PoleGroupName + "】")
|
|
|
if err := device.Update(); err != nil {
|
|
|
fmt.Printf("Update err = %s \n", err.Error())
|
|
|
+ build.WriteString("失败")
|
|
|
+
|
|
|
+ OperationHisService.Save(model.OperationRemove, model.ModuleTypeDevice, build.String())
|
|
|
+
|
|
|
return utils.FailResponse(err.Error(), nil)
|
|
|
}
|
|
|
+ build.WriteString("成功")
|
|
|
+
|
|
|
+ OperationHisService.Save(model.OperationRemove, model.ModuleTypeDevice, build.String())
|
|
|
|
|
|
//todo operation record
|
|
|
return utils.SuccessResponse(utils.Succeeded, nil)
|
|
@@ -77,8 +92,9 @@ func (s *lampPoleGroupService) List(poleGroupName string, current, size int) ([]
|
|
|
return devices, nil
|
|
|
}
|
|
|
|
|
|
-func (s *lampPoleGroupService) Remove(id int) *utils.Errors {
|
|
|
- // 创建查询实例
|
|
|
+func (s *lampPoleGroupService) Remove(id int, name string) *utils.Errors {
|
|
|
+ var build strings.Builder
|
|
|
+
|
|
|
device := &dao.LampPoleGroup{
|
|
|
ID: id,
|
|
|
IsDeleted: 1,
|
|
@@ -88,13 +104,15 @@ func (s *lampPoleGroupService) Remove(id int) *utils.Errors {
|
|
|
|
|
|
//todo
|
|
|
// service.lampPoleService.CountRelation()
|
|
|
-
|
|
|
- //todo operation record
|
|
|
+ build.WriteString("删除(灯杆分组)【" + name + "】")
|
|
|
err := device.Delete()
|
|
|
if err != nil {
|
|
|
+ build.WriteString("失败")
|
|
|
+ OperationHisService.Save(model.OperationRemove, model.ModuleTypeDevice, build.String())
|
|
|
return utils.FailResponse(err.Error(), nil)
|
|
|
}
|
|
|
- OperationHisService.Save()
|
|
|
+ build.WriteString("成功")
|
|
|
+ OperationHisService.Save(model.OperationRemove, model.ModuleTypeDevice, build.String())
|
|
|
return nil
|
|
|
}
|
|
|
|