You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
561 B
21 lines
561 B
package com.hxjt.dataupload.service;
|
|
|
|
import com.hxjt.dataupload.model.entity.doubleprevent.*;
|
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
public interface FxfxdxService {
|
|
//风险分析对象
|
|
ArrayList<Fxfxdx> getFxfxdxs();
|
|
//重大危险源名称对照
|
|
ArrayList<Fxfxdx> getZdwxys();
|
|
//风险分析单元
|
|
ArrayList<Fxfxdy> getFxfxdys();
|
|
//风险事件
|
|
ArrayList<Fxsj> getFxsjs();
|
|
//风险管控措施
|
|
ArrayList<Fxgkcs> getFxgkcss(String isSingleDay);
|
|
//隐患排查计划
|
|
ArrayList<Yhpcjh> getYhpcjhs(String isSingleDay);
|
|
}
|
|
|