|
@@ -26,19 +26,16 @@ func (s *lampPoleGroupService) Get(id int) (*dao.LampPoleGroup, *util.Errors) {
|
|
|
return device, nil
|
|
|
}
|
|
|
|
|
|
-func (s *lampPoleGroupService) CreateOrUpdate(req *dao.LampPoleGroup) *util.Errors {
|
|
|
+func (s *lampPoleGroupService) CreateOrUpdate(userId int64, tenantId int, req *dao.LampPoleGroup) *util.Errors {
|
|
|
var build strings.Builder
|
|
|
-
|
|
|
device := req
|
|
|
- if device.TenantId == "" {
|
|
|
- device.TenantId = "000000" // todo: 使用登录态
|
|
|
- }
|
|
|
- device.UpdateUser = "TODO" // todo: 使用登录态
|
|
|
+ device.TenantId = tenantId
|
|
|
+ device.UpdateUser = userId
|
|
|
device.UpdateTime = time.Now()
|
|
|
|
|
|
if req.ID == 0 {
|
|
|
device.CreateTime = time.Now()
|
|
|
- device.CreateUser = "TODO" // todo: 使用登录态
|
|
|
+ device.CreateUser = userId
|
|
|
build.WriteString("新增(灯杆分组)【" + device.PoleGroupName + "】")
|
|
|
if device.IsExistedByName() {
|
|
|
fmt.Printf("Create IsExistedByName \n")
|
|
@@ -47,11 +44,11 @@ func (s *lampPoleGroupService) CreateOrUpdate(req *dao.LampPoleGroup) *util.Erro
|
|
|
if err := device.Create(); err != nil {
|
|
|
fmt.Printf("Create err = %s \n", err.Error())
|
|
|
build.WriteString("失败")
|
|
|
- OperationHisService.Save(model.OperationRemove, model.ModuleTypeDevice, build.String())
|
|
|
+ OperationHisService.Save(userId, tenantId, model.OperationRemove, model.ModuleTypeDevice, build.String())
|
|
|
return util.FailResponse(err.Error(), nil)
|
|
|
}
|
|
|
build.WriteString("成功")
|
|
|
- OperationHisService.Save(model.OperationRemove, model.ModuleTypeDevice, build.String())
|
|
|
+ OperationHisService.Save(userId, tenantId, model.OperationRemove, model.ModuleTypeDevice, build.String())
|
|
|
return util.SuccessResponse(util.Succeeded, nil)
|
|
|
}
|
|
|
|
|
@@ -65,13 +62,13 @@ func (s *lampPoleGroupService) CreateOrUpdate(req *dao.LampPoleGroup) *util.Erro
|
|
|
fmt.Printf("Update err = %s \n", err.Error())
|
|
|
build.WriteString("失败")
|
|
|
|
|
|
- OperationHisService.Save(model.OperationRemove, model.ModuleTypeDevice, build.String())
|
|
|
+ OperationHisService.Save(userId, tenantId, model.OperationRemove, model.ModuleTypeDevice, build.String())
|
|
|
|
|
|
return util.FailResponse(err.Error(), nil)
|
|
|
}
|
|
|
build.WriteString("成功")
|
|
|
|
|
|
- OperationHisService.Save(model.OperationRemove, model.ModuleTypeDevice, build.String())
|
|
|
+ OperationHisService.Save(userId, tenantId, model.OperationRemove, model.ModuleTypeDevice, build.String())
|
|
|
|
|
|
//todo operation record
|
|
|
return util.SuccessResponse(util.Succeeded, nil)
|
|
@@ -92,13 +89,13 @@ func (s *lampPoleGroupService) List(poleGroupName string, current, size int) ([]
|
|
|
return devices, nil
|
|
|
}
|
|
|
|
|
|
-func (s *lampPoleGroupService) Remove(id int, name string) *util.Errors {
|
|
|
+func (s *lampPoleGroupService) Remove(userId int64, tenantId int, id int, name string) *util.Errors {
|
|
|
var build strings.Builder
|
|
|
|
|
|
device := &dao.LampPoleGroup{
|
|
|
ID: id,
|
|
|
IsDeleted: 1,
|
|
|
- UpdateUser: "TODO", // todo 使用登录态
|
|
|
+ UpdateUser: userId,
|
|
|
UpdateTime: time.Now(),
|
|
|
}
|
|
|
|
|
@@ -108,47 +105,47 @@ func (s *lampPoleGroupService) Remove(id int, name string) *util.Errors {
|
|
|
err := device.Delete()
|
|
|
if err != nil {
|
|
|
build.WriteString("失败")
|
|
|
- OperationHisService.Save(model.OperationRemove, model.ModuleTypeDevice, build.String())
|
|
|
+ OperationHisService.Save(userId, tenantId, model.OperationRemove, model.ModuleTypeDevice, build.String())
|
|
|
return util.FailResponse(err.Error(), nil)
|
|
|
}
|
|
|
build.WriteString("成功")
|
|
|
- OperationHisService.Save(model.OperationRemove, model.ModuleTypeDevice, build.String())
|
|
|
+ OperationHisService.Save(userId, tenantId, model.OperationRemove, model.ModuleTypeDevice, build.String())
|
|
|
return nil
|
|
|
}
|
|
|
|
|
|
-func (s *lampPoleGroupService) GetList() ([]*dao.LampPoleGroup, *util.Errors) {
|
|
|
+func (s *lampPoleGroupService) GetList(tenantId int) ([]*dao.LampPoleGroup, *util.Errors) {
|
|
|
var devices []*dao.LampPoleGroup
|
|
|
- err := util.Redis.Get(getLampPoleGroupListRedisKey("000000")).Scan(&devices)
|
|
|
+ err := util.Redis.Get(getLampPoleGroupListRedisKey(tenantId)).Scan(&devices)
|
|
|
if err == nil {
|
|
|
return devices, nil
|
|
|
}
|
|
|
|
|
|
device := &dao.LampPoleGroup{
|
|
|
- TenantId: "000000", // todo 使用登录态
|
|
|
+ TenantId: tenantId,
|
|
|
IsDeleted: 0,
|
|
|
}
|
|
|
devices, err = device.GetAllDevices()
|
|
|
if err != nil {
|
|
|
return nil, util.FailResponse(err.Error(), nil)
|
|
|
}
|
|
|
- _ = util.Redis.Set(getLampPoleGroupListRedisKey("000000"), devices, 0).Err()
|
|
|
+ _ = util.Redis.Set(getLampPoleGroupListRedisKey(tenantId), devices, 0).Err()
|
|
|
|
|
|
return devices, nil
|
|
|
}
|
|
|
|
|
|
-func getLampPoleGroupListRedisKey(tenantId string) string {
|
|
|
+func getLampPoleGroupListRedisKey(tenantId int) string {
|
|
|
return fmt.Sprintf(model.LampPoleGroupList, tenantId)
|
|
|
}
|
|
|
|
|
|
-func (s *lampPoleGroupService) GetFiltration() ([]*dao.LampPoleGroup, *util.Errors) {
|
|
|
+func (s *lampPoleGroupService) GetFiltration(tenantId int) ([]*dao.LampPoleGroup, *util.Errors) {
|
|
|
var devices []*dao.LampPoleGroup
|
|
|
- err := util.Redis.Get(getGroupFiltrationListRedisKey("000000")).Scan(&devices)
|
|
|
+ err := util.Redis.Get(getGroupFiltrationListRedisKey(tenantId)).Scan(&devices)
|
|
|
if err == nil {
|
|
|
return devices, nil
|
|
|
}
|
|
|
|
|
|
device := &dao.LampPoleGroup{
|
|
|
- TenantId: "000000", // todo 使用登录态
|
|
|
+ TenantId: tenantId,
|
|
|
IsDeleted: 0,
|
|
|
}
|
|
|
|
|
@@ -160,19 +157,19 @@ func (s *lampPoleGroupService) GetFiltration() ([]*dao.LampPoleGroup, *util.Erro
|
|
|
if err != nil {
|
|
|
return nil, util.FailResponse(err.Error(), nil)
|
|
|
}
|
|
|
- _ = util.Redis.Set(getGroupFiltrationListRedisKey("000000"), devices, 0).Err()
|
|
|
+ _ = util.Redis.Set(getGroupFiltrationListRedisKey(tenantId), devices, 0).Err()
|
|
|
|
|
|
return devices, nil
|
|
|
}
|
|
|
|
|
|
-func getGroupFiltrationListRedisKey(tenantId string) string {
|
|
|
+func getGroupFiltrationListRedisKey(tenantId int) string {
|
|
|
return fmt.Sprintf(model.GroupFiltrationList, tenantId)
|
|
|
}
|
|
|
|
|
|
-func (s *lampPoleGroupService) GetTree() ([]*dao.LampPoleGroup, *util.Errors) {
|
|
|
+func (s *lampPoleGroupService) GetTree(tenantId int) ([]*dao.LampPoleGroup, *util.Errors) {
|
|
|
// todo use redis cache
|
|
|
device := &dao.LampPoleGroup{
|
|
|
- TenantId: "000000", // todo 使用登录态
|
|
|
+ TenantId: tenantId,
|
|
|
IsDeleted: 0,
|
|
|
}
|
|
|
|