| | |
| | | package com.vci.web.service; |
| | | |
| | | import com.vci.corba.common.PLException; |
| | | import com.vci.dto.PLActionClsDTO; |
| | | import com.vci.dto.PLActionDTO; |
| | | import com.vci.dto.PLActionExpDTO; |
| | | import com.vci.dto.PLActionQueryDTO; |
| | | import com.vci.dto.*; |
| | | import com.vci.starter.web.pagemodel.BaseResult; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | |
| | | * @param plActionExpDTO 导出属性设置对象 |
| | | */ |
| | | void exportAction(PLActionExpDTO plActionExpDTO, HttpServletResponse response) throws PLException, IOException; |
| | | /** |
| | | * 保存Action参数数据 |
| | | * dto action传输对象 |
| | | * @return 保存结果 |
| | | */ |
| | | BaseResult savePLActionParam(PLActionParamDTO dto) throws PLException; |
| | | /** |
| | | * 修改Action参数数据 |
| | | * dto action传输对象 |
| | | * @return 保存结果 |
| | | */ |
| | | BaseResult updatePLActionParam(PLActionParamDTO dto) throws PLException; |
| | | /** |
| | | * 删除Action参数数据 |
| | | * oid 参数主键 |
| | | * @return 保存结果 |
| | | */ |
| | | BaseResult deletePLActionParam(String oid) throws PLException; |
| | | } |