qa-prevention-gwj/src/main/java/com/zcloud/service/map/AssemblePumpRoomHandel.java

39 lines
1011 B
Java
Raw Normal View History

2024-04-23 09:38:35 +08:00
package com.zcloud.service.map;
import com.zcloud.entity.PageData;
import org.springframework.stereotype.Component;
import java.util.LinkedList;
/**
*
* * xfsy01
* * xfbf01 PumpRoom
* * xfjyd01 Rescue team
* * xfkzs01 control
* wangxuan
* www.zcloudchina.com
*/
@Component
public class AssemblePumpRoomHandel 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 {
// 自己的业务
return fireResourcesMapper.getPumpRoomDataList(pageData);
}
@Override
public void afterPropertiesSet() throws Exception {
AssemblyBeanFactory.register("xfbf01", this);
}
}