| | |
| | | |
| | | import com.vci.corba.common.PLException; |
| | | import com.vci.corba.omd.stm.StatePool; |
| | | import com.vci.dto.OsStatusDTO; |
| | | import com.vci.pagemodel.OsStatusVO; |
| | | import com.vci.starter.web.pagemodel.BaseResult; |
| | | import com.vci.starter.web.pagemodel.DataGrid; |
| | | import com.vci.starter.web.pagemodel.PageHelper; |
| | | import com.vci.dto.OsStatusDTO; |
| | | import com.vci.pagemodel.OsStatusVO; |
| | | |
| | | import java.io.File; |
| | | import java.util.Collection; |
| | |
| | | * @param statePool 状态池的数据对象 |
| | | * @return 显示对象 |
| | | */ |
| | | OsStatusVO statusDO2VO(com.vci.corba.omd.stm.StatePool statePool); |
| | | OsStatusVO statusDO2VO(StatePool statePool); |
| | | |
| | | /** |
| | | * 数据对象转换为显示对象 |
| | | * @param statePools 状态池的数据对象 集合 |
| | | * @return 显示对象 |
| | | */ |
| | | List<OsStatusVO> statusDO2VOs(Collection<com.vci.corba.omd.stm.StatePool> statePools); |
| | | List<OsStatusVO> statusDO2VOs(Collection<StatePool> statePools); |
| | | |
| | | /** |
| | | * 查询所有的状态 |
| | |
| | | * @param statusOids 需要导出的属性名称 |
| | | * @return |
| | | */ |
| | | String exportStatus(String exportFileName,String statusOids) throws PLException; |
| | | String exportStatus(String exportFileName,String statusOids,boolean flag/*控制导出的列名是否和导入模板一致*/) throws PLException; |
| | | |
| | | /** |
| | | * 下载状态导入模板 |