Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
黄嘉阳
/
iot-platform-server
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
4170a3e7
authored
Nov 01, 2023
by
huangjy
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
feat:批量编辑长者,批量编辑设备属性
parent
daa119d8
Show whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
179 additions
and
20 deletions
server-common/src/main/java/com/makeit/module/iot/service/IotDevicePropertiesOperateService.java
server-module/src/main/java/com/makeit/module/controller/device/PlatDeviceController.java
server-module/src/main/java/com/makeit/module/controller/elder/PlatElderController.java
server-service/src/main/java/com/makeit/dto/platform/device/PlatDeviceAttrDTO.java
server-service/src/main/java/com/makeit/dto/platform/device/PlatDeviceBaseAttrDTO.java
server-service/src/main/java/com/makeit/dto/platform/elder/add/PlatElderBatchEditDTOVO.java
server-service/src/main/java/com/makeit/dto/wechat/device/PlatDeviceAttrWechatDTO.java
server-service/src/main/java/com/makeit/service/platform/device/PlatDeviceService.java
server-service/src/main/java/com/makeit/service/platform/device/impl/PlatDeviceServiceImpl.java
server-service/src/main/java/com/makeit/service/platform/elder/PlatElderService.java
server-service/src/main/java/com/makeit/service/platform/elder/impl/PlatElderServiceImpl.java
server-common/src/main/java/com/makeit/module/iot/service/IotDevicePropertiesOperateService.java
View file @
4170a3e7
...
@@ -81,4 +81,24 @@ public class IotDevicePropertiesOperateService extends IotCommonService {
...
@@ -81,4 +81,24 @@ public class IotDevicePropertiesOperateService extends IotCommonService {
}
}
public
String
deviceWriteAttr
(
String
deviceId
,
Map
<
String
,
Object
>
map
)
{
String
url
=
iotUrl
+
DEVICE_PREFIX_URL
+
deviceId
+
"/property"
;
for
(
Map
.
Entry
<
String
,
Object
>
entry
:
map
.
entrySet
())
{
String
body
=
JsonUtil
.
toJson
(
entry
);
HttpRequest
request
=
buildRequest
(
url
,
body
);
try
{
ResponseMessage
responseMessage
=
sendPut
(
url
,
request
);
log
.
info
(
"写入设备属性信息,返回信息:{}"
,
responseMessage
.
getMessage
());
if
(
responseMessage
.
getStatus
()
!=
200
)
{
String
errorMsg
=
"设备:"
+
deviceId
+
",属性:"
+
entry
.
getKey
()
+
"写入失败:"
+
responseMessage
.
getMessage
();
log
.
error
(
"设备写入失败:{}"
,
errorMsg
);
return
errorMsg
;
}
}
catch
(
IOException
e
)
{
log
.
error
(
"调用:{}接口异常:{}"
,
url
,
e
.
getMessage
());
}
}
return
""
;
}
}
}
server-module/src/main/java/com/makeit/module/controller/device/PlatDeviceController.java
View file @
4170a3e7
...
@@ -6,6 +6,7 @@ import com.makeit.common.page.PageReqDTO;
...
@@ -6,6 +6,7 @@ import com.makeit.common.page.PageReqDTO;
import
com.makeit.common.page.PageVO
;
import
com.makeit.common.page.PageVO
;
import
com.makeit.common.response.ApiResponseEntity
;
import
com.makeit.common.response.ApiResponseEntity
;
import
com.makeit.common.response.ApiResponseUtils
;
import
com.makeit.common.response.ApiResponseUtils
;
import
com.makeit.dto.platform.device.PlatDeviceAttrDTO
;
import
com.makeit.dto.platform.device.PlatDeviceEditDTO
;
import
com.makeit.dto.platform.device.PlatDeviceEditDTO
;
import
com.makeit.dto.platform.device.PlatDeviceQueryDTO
;
import
com.makeit.dto.platform.device.PlatDeviceQueryDTO
;
import
com.makeit.dto.wechat.device.PlatDeviceAttrWechatDTO
;
import
com.makeit.dto.wechat.device.PlatDeviceAttrWechatDTO
;
...
@@ -94,5 +95,13 @@ public class PlatDeviceController {
...
@@ -94,5 +95,13 @@ public class PlatDeviceController {
platDeviceService
.
editDeviceProperties
(
dto
);
platDeviceService
.
editDeviceProperties
(
dto
);
return
ApiResponseUtils
.
success
();
return
ApiResponseUtils
.
success
();
}
}
@ApiOperation
(
value
=
"批量编辑设备属性"
,
notes
=
"批量编辑属性,仅相同产品类型的设备可批量编辑属性,点击展示该产品类型的可编辑属性(呼吸心率设备不可编辑设备属性,空间可编辑雷达安装方式和雷达功能模式,跌倒可编辑雷达安装高度"
)
@PostMapping
(
"batchEditProperties"
)
public
ApiResponseEntity
<
List
<
String
>>
batchEditProperties
(
@RequestBody
PlatDeviceAttrDTO
dto
)
{
platDeviceService
.
batchEditProperties
(
dto
);
return
ApiResponseUtils
.
success
();
}
}
}
server-module/src/main/java/com/makeit/module/controller/elder/PlatElderController.java
View file @
4170a3e7
...
@@ -13,6 +13,7 @@ import com.makeit.dto.platform.elder.PlatElderCheckInDTO;
...
@@ -13,6 +13,7 @@ import com.makeit.dto.platform.elder.PlatElderCheckInDTO;
import
com.makeit.dto.platform.elder.PlatElderCheckOutDTO
;
import
com.makeit.dto.platform.elder.PlatElderCheckOutDTO
;
import
com.makeit.dto.platform.elder.PlatElderQueryDTO
;
import
com.makeit.dto.platform.elder.PlatElderQueryDTO
;
import
com.makeit.dto.platform.elder.add.PlatElderAddDTO
;
import
com.makeit.dto.platform.elder.add.PlatElderAddDTO
;
import
com.makeit.dto.platform.elder.add.PlatElderBatchEditDTOVO
;
import
com.makeit.dto.platform.elder.add.PlatElderDTOVO
;
import
com.makeit.dto.platform.elder.add.PlatElderDTOVO
;
import
com.makeit.service.platform.elder.PlatElderService
;
import
com.makeit.service.platform.elder.PlatElderService
;
import
com.makeit.vo.platform.elder.PlatElderListVO
;
import
com.makeit.vo.platform.elder.PlatElderListVO
;
...
@@ -95,6 +96,13 @@ public class PlatElderController {
...
@@ -95,6 +96,13 @@ public class PlatElderController {
return
ApiResponseUtils
.
success
();
return
ApiResponseUtils
.
success
();
}
}
@ApiOperation
(
"批量编辑"
)
@PostMapping
(
"batchEdit"
)
public
ApiResponseEntity
<?>
batchEdit
(
@RequestBody
PlatElderBatchEditDTOVO
dto
)
{
platElderService
.
batchEdit
(
dto
);
return
ApiResponseUtils
.
success
();
}
@ApiOperation
(
"详情"
)
@ApiOperation
(
"详情"
)
@PostMapping
(
"view"
)
@PostMapping
(
"view"
)
public
ApiResponseEntity
<
PlatElderDTOVO
>
view
(
@RequestBody
BaseIdDTO
baseIdDTO
)
{
public
ApiResponseEntity
<
PlatElderDTOVO
>
view
(
@RequestBody
BaseIdDTO
baseIdDTO
)
{
...
...
server-service/src/main/java/com/makeit/dto/platform/device/PlatDeviceAttrDTO.java
0 → 100644
View file @
4170a3e7
package
com
.
makeit
.
dto
.
platform
.
device
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
import
java.util.List
;
@Data
@ApiModel
(
value
=
"PlatDevice设备属性对象"
,
description
=
"批量编辑设备属性"
)
public
class
PlatDeviceAttrDTO
extends
PlatDeviceBaseAttrDTO
{
@ApiModelProperty
(
value
=
"设备id集合 不是id是oriDeviceId"
)
private
List
<
String
>
deviceIdList
;
}
server-service/src/main/java/com/makeit/dto/platform/device/PlatDeviceBaseAttrDTO.java
0 → 100644
View file @
4170a3e7
package
com
.
makeit
.
dto
.
platform
.
device
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
import
java.util.List
;
@Data
@ApiModel
(
value
=
"设备属性基类对象"
,
description
=
"设备属性基类"
)
public
class
PlatDeviceBaseAttrDTO
{
@ApiModelProperty
(
value
=
"雷达安装方式 雷达安装方式 初始安装时,空间要配置:侧装轨迹模式, 跌倒要配置:顶装,实际安装高度;不需要改变"
)
private
Integer
radarMount
;
@ApiModelProperty
(
value
=
"雷达功能模式 默认侧装轨迹\n"
+
"侧装下\n"
+
"0为存在模式,1为轨迹模式;\n"
+
"顶装下\n"
+
"0为存在模式,1为区块模式;"
)
private
Integer
radarMode
;
@ApiModelProperty
(
value
=
"\"最小值\":200,\"最大值\":380,\"步\n"
+
"进\":1,\"单位\":\"cm\""
)
private
Integer
radarHight
;
}
server-service/src/main/java/com/makeit/dto/platform/elder/add/PlatElderBatchEditDTOVO.java
0 → 100644
View file @
4170a3e7
package
com
.
makeit
.
dto
.
platform
.
elder
.
add
;
import
com.makeit.common.dto.BaseTenantDTO
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
import
lombok.EqualsAndHashCode
;
import
java.util.List
;
/**
* <p>
* 长者基本信息
* </p>
*
* @author eugene young
* @since 2023-08-29
*/
@Data
@EqualsAndHashCode
(
callSuper
=
true
)
@ApiModel
(
value
=
"Elder批量变价对象"
,
description
=
"长者批量编辑DTO"
)
public
class
PlatElderBatchEditDTOVO
extends
BaseTenantDTO
{
@ApiModelProperty
(
value
=
"ID 添加不需要传此参数"
)
private
List
<
String
>
idList
;
@ApiModelProperty
(
value
=
"呼吸率,范围用-区分"
)
private
String
respiratoryRate
;
@ApiModelProperty
(
value
=
"呼吸率异常时间 单位:s"
)
private
String
respiratoryExceptionTime
;
@ApiModelProperty
(
value
=
"心率,范围用-区分"
)
private
String
heartRate
;
@ApiModelProperty
(
value
=
"心率异常时间 单位 s"
)
private
String
heartExceptionTime
;
}
server-service/src/main/java/com/makeit/dto/wechat/device/PlatDeviceAttrWechatDTO.java
View file @
4170a3e7
package
com
.
makeit
.
dto
.
wechat
.
device
;
package
com
.
makeit
.
dto
.
wechat
.
device
;
import
com.makeit.dto.platform.device.PlatDeviceBaseAttrDTO
;
import
com.makeit.module.iot.dto.UserServerInfo
;
import
com.makeit.module.iot.dto.UserServerInfo
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModelProperty
;
import
io.swagger.annotations.ApiModelProperty
;
...
@@ -15,21 +16,11 @@ import lombok.Data;
...
@@ -15,21 +16,11 @@ import lombok.Data;
*/
*/
@Data
@Data
@ApiModel
(
value
=
"PlatDeviceAttrWechatDTO对象"
,
description
=
"设备属性 跌倒:安装方式 安装高度 空间人体:安装方式 功能模式"
)
@ApiModel
(
value
=
"PlatDeviceAttrWechatDTO对象"
,
description
=
"设备属性 跌倒:安装方式 安装高度 空间人体:安装方式 功能模式"
)
public
class
PlatDeviceAttrWechatDTO
{
public
class
PlatDeviceAttrWechatDTO
extends
PlatDeviceBaseAttrDTO
{
@ApiModelProperty
(
value
=
"设备id"
)
@ApiModelProperty
(
value
=
"设备id"
)
private
String
deviceId
;
private
String
deviceId
;
@ApiModelProperty
(
value
=
"雷达安装方式 雷达安装方式"
)
private
Integer
radarMount
;
@ApiModelProperty
(
value
=
"雷达功能模式 默认侧装轨迹\n"
+
"侧装下\n"
+
"0为存在模式,1为轨迹模式;\n"
+
"顶装下\n"
+
"0为存在模式,1为区块模式;"
)
private
Integer
radarMode
;
@ApiModelProperty
(
value
=
"\"最小值\":200,\"最大值\":380,\"步\n"
+
"进\":1,\"单位\":\"cm\""
)
private
Integer
radarHight
;
@ApiModelProperty
(
value
=
"读取硬件的系统参数,主要读取服务信息和雷达信息,多个逗号隔开"
)
@ApiModelProperty
(
value
=
"读取硬件的系统参数,主要读取服务信息和雷达信息,多个逗号隔开"
)
private
String
readProperties
;
private
String
readProperties
;
...
...
server-service/src/main/java/com/makeit/service/platform/device/PlatDeviceService.java
View file @
4170a3e7
...
@@ -5,6 +5,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
...
@@ -5,6 +5,7 @@ import com.baomidou.mybatisplus.extension.service.IService;
import
com.makeit.common.page.PageReqDTO
;
import
com.makeit.common.page.PageReqDTO
;
import
com.makeit.common.page.PageVO
;
import
com.makeit.common.page.PageVO
;
import
com.makeit.dto.platform.dataScreen.PlatDataScreenQueryDTO
;
import
com.makeit.dto.platform.dataScreen.PlatDataScreenQueryDTO
;
import
com.makeit.dto.platform.device.PlatDeviceAttrDTO
;
import
com.makeit.dto.platform.device.PlatDeviceDetailDTO
;
import
com.makeit.dto.platform.device.PlatDeviceDetailDTO
;
import
com.makeit.dto.platform.device.PlatDeviceEditDTO
;
import
com.makeit.dto.platform.device.PlatDeviceEditDTO
;
import
com.makeit.dto.platform.device.PlatDeviceQueryDTO
;
import
com.makeit.dto.platform.device.PlatDeviceQueryDTO
;
...
@@ -71,6 +72,5 @@ public interface PlatDeviceService extends IService<PlatDevice> {
...
@@ -71,6 +72,5 @@ public interface PlatDeviceService extends IService<PlatDevice> {
PlatDeviceViewVO
viewByDeviceId
(
String
id
);
PlatDeviceViewVO
viewByDeviceId
(
String
id
);
boolean
updateDeviceStatus
(
String
messageType
,
String
deviceId
,
String
iot_tenantId
);
void
batchEditProperties
(
PlatDeviceAttrDTO
dto
);
}
}
server-service/src/main/java/com/makeit/service/platform/device/impl/PlatDeviceServiceImpl.java
View file @
4170a3e7
...
@@ -7,6 +7,7 @@ import com.baomidou.mybatisplus.core.conditions.update.UpdateWrapper;
...
@@ -7,6 +7,7 @@ import com.baomidou.mybatisplus.core.conditions.update.UpdateWrapper;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
com.baomidou.mybatisplus.extension.service.impl.ServiceImpl
;
import
com.baomidou.mybatisplus.extension.service.impl.ServiceImpl
;
import
com.google.common.collect.Lists
;
import
com.google.common.collect.Lists
;
import
com.google.common.collect.Maps
;
import
com.google.common.collect.Sets
;
import
com.google.common.collect.Sets
;
import
com.makeit.common.dto.BaseTenantDTO
;
import
com.makeit.common.dto.BaseTenantDTO
;
import
com.makeit.common.entity.BaseBusEntity
;
import
com.makeit.common.entity.BaseBusEntity
;
...
@@ -14,9 +15,7 @@ import com.makeit.common.entity.BaseEntity;
...
@@ -14,9 +15,7 @@ import com.makeit.common.entity.BaseEntity;
import
com.makeit.common.page.PageReqDTO
;
import
com.makeit.common.page.PageReqDTO
;
import
com.makeit.common.page.PageVO
;
import
com.makeit.common.page.PageVO
;
import
com.makeit.dto.platform.dataScreen.PlatDataScreenQueryDTO
;
import
com.makeit.dto.platform.dataScreen.PlatDataScreenQueryDTO
;
import
com.makeit.dto.platform.device.PlatDeviceDetailDTO
;
import
com.makeit.dto.platform.device.*
;
import
com.makeit.dto.platform.device.PlatDeviceEditDTO
;
import
com.makeit.dto.platform.device.PlatDeviceQueryDTO
;
import
com.makeit.dto.saas.device.PlatDeviceEditSaasDTO
;
import
com.makeit.dto.saas.device.PlatDeviceEditSaasDTO
;
import
com.makeit.dto.wechat.device.PlatDeviceAttrWechatDTO
;
import
com.makeit.dto.wechat.device.PlatDeviceAttrWechatDTO
;
import
com.makeit.dto.wechat.device.PlatDeviceEditWechatDTO
;
import
com.makeit.dto.wechat.device.PlatDeviceEditWechatDTO
;
...
@@ -403,6 +402,7 @@ public class PlatDeviceServiceImpl extends ServiceImpl<PlatDeviceMapper, PlatDev
...
@@ -403,6 +402,7 @@ public class PlatDeviceServiceImpl extends ServiceImpl<PlatDeviceMapper, PlatDev
@Override
@Override
public
void
editDeviceProperties
(
PlatDeviceAttrWechatDTO
dto
)
{
public
void
editDeviceProperties
(
PlatDeviceAttrWechatDTO
dto
)
{
log
.
info
(
"写入设备属性请求参数:{}"
,
JSON
.
toJSONString
(
dto
));
String
deviceId
=
dto
.
getDeviceId
();
String
deviceId
=
dto
.
getDeviceId
();
PlatDeviceOther
other
=
platDeviceOtherService
.
getOne
(
new
QueryWrapper
<
PlatDeviceOther
>().
lambda
()
PlatDeviceOther
other
=
platDeviceOtherService
.
getOne
(
new
QueryWrapper
<
PlatDeviceOther
>().
lambda
()
.
eq
(
PlatDeviceOther:
:
getOriDeviceId
,
deviceId
));
.
eq
(
PlatDeviceOther:
:
getOriDeviceId
,
deviceId
));
...
@@ -417,8 +417,11 @@ public class PlatDeviceServiceImpl extends ServiceImpl<PlatDeviceMapper, PlatDev
...
@@ -417,8 +417,11 @@ public class PlatDeviceServiceImpl extends ServiceImpl<PlatDeviceMapper, PlatDev
platDeviceOtherService
.
updateById
(
other
);
platDeviceOtherService
.
updateById
(
other
);
}
}
log
.
info
(
"写入设备属性请求参数:{}"
,
JSON
.
toJSONString
(
dto
));
Map
<
String
,
Object
>
map
=
getAttrMap
(
dto
);
devicePropertiesOperateService
.
deviceWrite
(
deviceId
,
dto
.
getRadarMount
(),
dto
.
getRadarMode
(),
dto
.
getRadarHight
(),
usrServerInfo
);
if
(
dto
.
getUsrServerInfo
()
!=
null
)
{
map
.
put
(
"usrServerInfo"
,
JSON
.
toJSONString
(
dto
.
getUsrServerInfo
()));
}
devicePropertiesOperateService
.
deviceWriteAttr
(
deviceId
,
map
);
if
(
dto
.
getRadarMount
()
!=
null
)
{
if
(
dto
.
getRadarMount
()
!=
null
)
{
//更新区域设置设备安装方式
//更新区域设置设备安装方式
...
@@ -426,7 +429,40 @@ public class PlatDeviceServiceImpl extends ServiceImpl<PlatDeviceMapper, PlatDev
...
@@ -426,7 +429,40 @@ public class PlatDeviceServiceImpl extends ServiceImpl<PlatDeviceMapper, PlatDev
.
set
(
PlatRegionSetting:
:
getInstallType
,
dto
.
getRadarMount
())
.
set
(
PlatRegionSetting:
:
getInstallType
,
dto
.
getRadarMount
())
.
eq
(
PlatRegionSetting:
:
getDeviceId
,
deviceId
));
.
eq
(
PlatRegionSetting:
:
getDeviceId
,
deviceId
));
}
}
}
private
static
Map
<
String
,
Object
>
getAttrMap
(
PlatDeviceBaseAttrDTO
dto
)
{
Map
<
String
,
Object
>
map
=
Maps
.
newHashMap
();
if
(
dto
.
getRadarMount
()
!=
null
)
{
map
.
put
(
"radarMount"
,
dto
.
getRadarMount
());
}
if
(
dto
.
getRadarMode
()
!=
null
)
{
map
.
put
(
"radarMode"
,
dto
.
getRadarMode
());
}
if
(
dto
.
getRadarHight
()
!=
null
)
{
map
.
put
(
"radarHight"
,
dto
.
getRadarHight
()
);
}
return
map
;
}
@Override
public
void
batchEditProperties
(
PlatDeviceAttrDTO
dto
)
{
if
(
CollectionUtils
.
isEmpty
(
dto
.
getDeviceIdList
()))
{
return
;
}
PlatDeviceOther
other
=
platDeviceOtherService
.
getOne
(
new
QueryWrapper
<
PlatDeviceOther
>().
lambda
()
.
eq
(
PlatDeviceOther:
:
getOriDeviceId
,
dto
.
getDeviceIdList
()));
Map
<
String
,
Object
>
map
=
getAttrMap
(
dto
);
List
<
String
>
resultList
=
Lists
.
newArrayList
();
for
(
String
deviceId
:
dto
.
getDeviceIdList
())
{
String
result
=
devicePropertiesOperateService
.
deviceWriteAttr
(
deviceId
,
map
);
if
(
StringUtils
.
isNotEmpty
(
result
))
{
resultList
.
add
(
result
);
}
}
if
(
CollectionUtils
.
isNotEmpty
(
resultList
))
{
throw
new
RuntimeException
(
"修改设备属性失败:"
+
resultList
.
get
(
0
));
}
}
}
@Override
@Override
...
...
server-service/src/main/java/com/makeit/service/platform/elder/PlatElderService.java
View file @
4170a3e7
...
@@ -6,6 +6,7 @@ import com.makeit.common.page.PageVO;
...
@@ -6,6 +6,7 @@ import com.makeit.common.page.PageVO;
import
com.makeit.common.vo.ExcelImportVo
;
import
com.makeit.common.vo.ExcelImportVo
;
import
com.makeit.dto.platform.elder.*
;
import
com.makeit.dto.platform.elder.*
;
import
com.makeit.dto.platform.elder.add.PlatElderAddDTO
;
import
com.makeit.dto.platform.elder.add.PlatElderAddDTO
;
import
com.makeit.dto.platform.elder.add.PlatElderBatchEditDTOVO
;
import
com.makeit.dto.platform.elder.add.PlatElderDTOVO
;
import
com.makeit.dto.platform.elder.add.PlatElderDTOVO
;
import
com.makeit.entity.platform.device.PlatDevice
;
import
com.makeit.entity.platform.device.PlatDevice
;
import
com.makeit.entity.platform.elder.PlatElder
;
import
com.makeit.entity.platform.elder.PlatElder
;
...
@@ -62,6 +63,8 @@ public interface PlatElderService extends IService<PlatElder> {
...
@@ -62,6 +63,8 @@ public interface PlatElderService extends IService<PlatElder> {
/*小程序*/
/*小程序*/
List
<
PlatElderWechatSimpleVO
>
listMy
();
List
<
PlatElderWechatSimpleVO
>
listMy
();
void
batchEdit
(
PlatElderBatchEditDTOVO
dto
);
/*小程序*/
/*小程序*/
}
}
server-service/src/main/java/com/makeit/service/platform/elder/impl/PlatElderServiceImpl.java
View file @
4170a3e7
...
@@ -837,8 +837,20 @@ public class PlatElderServiceImpl extends ServiceImpl<PlatElderMapper, PlatElder
...
@@ -837,8 +837,20 @@ public class PlatElderServiceImpl extends ServiceImpl<PlatElderMapper, PlatElder
if
(
StringUtils
.
isNotBlank
(
oldBedId
)
&&
!
oldBedId
.
equals
(
dto
.
getBedId
()))
{
if
(
StringUtils
.
isNotBlank
(
oldBedId
)
&&
!
oldBedId
.
equals
(
dto
.
getBedId
()))
{
checkOutInternal
(
oldBedId
);
checkOutInternal
(
oldBedId
);
}
}
}
@Override
@Transactional
(
rollbackFor
=
Exception
.
class
)
public
void
batchEdit
(
PlatElderBatchEditDTOVO
dto
)
{
if
(
CollectionUtils
.
isEmpty
(
dto
.
getIdList
()))
{
return
;
}
List
<
PlatElderHealthInfo
>
healthInfoList
=
platElderHealthInfoService
.
list
(
new
QueryWrapper
<
PlatElderHealthInfo
>().
lambda
()
.
in
(
PlatElderHealthInfo:
:
getElderId
,
dto
.
getIdList
()));
for
(
PlatElderHealthInfo
elderHealthInfo
:
healthInfoList
)
{
BeanUtils
.
copyProperties
(
dto
,
elderHealthInfo
);
platElderHealthInfoService
.
saveOrUpdate
(
elderHealthInfo
);
}
}
}
//@TenantIdIgnore
//@TenantIdIgnore
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment