Commit d3ea4aa1 authored by 赵啸非's avatar 赵啸非

添加批量新增窗口业务接口

parent 89eb6a6a
......@@ -19,4 +19,14 @@ public class SiteMatterVo extends BaseEntityLong {
*/
private String belongDept;
/**
* 窗口到现场次数
*/
private Integer windowToTheSceneNum;
/**
* 网办到现场次数
*/
private Integer onlineToTheSceneNum;
}
\ No newline at end of file
......@@ -35,6 +35,8 @@ public class SiteMatterServiceImpl extends AbstractCRUDServiceImpl<SiteMatterDao
MatterEntity matterEntity = matterService.getCache(item.getMatterId().toString());
if(!ObjectUtils.isEmpty(matterEntity)){
item.setBelongDept(matterEntity.getBelongDept());
item.setWindowToTheSceneNum(matterEntity.getWindowToTheSceneNum());
item.setOnlineToTheSceneNum(matterEntity.getOnlineToTheSceneNum());
}
}
}).count();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment