| | |
| | | import com.vci.corba.omd.stm.StatePool; |
| | | import com.vci.starter.web.pagemodel.DataGrid; |
| | | import com.vci.starter.web.pagemodel.PageHelper; |
| | | import com.vci.web.dto.OsStatusDTO; |
| | | import com.vci.web.pageModel.OsStatusVO; |
| | | import com.vci.dto.OsStatusDTO; |
| | | import com.vci.pagemodel.OsStatusVO; |
| | | |
| | | import java.util.Collection; |
| | | import java.util.List; |
| | |
| | | * 批量添加状态 |
| | | * @param statePoolList 状态内容 |
| | | */ |
| | | void batchAddStatus(List<StatePool> statePoolList); |
| | | boolean batchAddStatus(List<StatePool> statePoolList) throws Exception; |
| | | |
| | | /** |
| | | * 批量修改状态 |
| | | * @param statePoolList 状态内容 |
| | | */ |
| | | void batchEditSave(List<StatePool> statePoolList); |
| | | boolean batchEditSave(List<StatePool> statePoolList) throws Exception; |
| | | |
| | | /** |
| | | * 状态列表 |
| | |
| | | * 添加状态 |
| | | * @param statusDTO 状态的数据传输对象 |
| | | */ |
| | | void addSave(OsStatusDTO statusDTO); |
| | | boolean addSave(OsStatusDTO statusDTO) throws Exception; |
| | | |
| | | /** |
| | | * 编辑状态 |
| | | * @param statusDTO 状态的数据传输对象 |
| | | */ |
| | | void editSave(OsStatusDTO statusDTO); |
| | | boolean editSave(OsStatusDTO statusDTO)throws Exception ; |
| | | |
| | | /** |
| | | * 删除状态 |
| | | * @param oids 主键 |
| | | */ |
| | | void delete(String oids); |
| | | boolean delete(String oids); |
| | | |
| | | /** |
| | | * 状态的数据传输对象转换为数据对象 |