39 lines
1.0 KiB
Java
39 lines
1.0 KiB
Java
package com.zcloud.service.map;
|
||
|
||
import com.zcloud.entity.PageData;
|
||
import org.springframework.stereotype.Component;
|
||
|
||
import java.util.LinkedList;
|
||
|
||
/**
|
||
* 说明:消防水源
|
||
* * xfsy01 消防水源
|
||
* * xfbf01 消防泵房
|
||
* * xfjyd01 消防救援队 Rescue team
|
||
* * xfkzs01 消防控制室
|
||
* 作者:wangxuan
|
||
* 官网:www.zcloudchina.com
|
||
*/
|
||
@Component
|
||
public class AssembleRescueTeamHandel extends AbsFireSourcesHandel {
|
||
|
||
/**
|
||
* @Description: 消防救援队
|
||
* @Author: dearLin
|
||
* @Date: 2023/9/20/020 15:38
|
||
* @Param: [com.zcloud.entity.PageData] [pageData]
|
||
* @Return: java.util.LinkedList<com.zcloud.entity.PageData>
|
||
*/
|
||
@Override
|
||
public LinkedList<PageData> assemblyDataHandel(PageData pageData) throws Exception {
|
||
pageData.put("CORPINFO_ID",null);
|
||
// 自己的业务
|
||
return fireResourcesMapper.getRescueTeamDataList(pageData);
|
||
}
|
||
|
||
@Override
|
||
public void afterPropertiesSet() throws Exception {
|
||
AssemblyBeanFactory.register("xfjyd01", this);
|
||
}
|
||
}
|