| | |
| | | import org.sxkj.gd.workorder.excel.GdTaskResultExcel; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import org.springblade.core.mp.base.BaseService; |
| | | |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import java.util.List; |
| | | |
| | | /** |
| | |
| | | * @return |
| | | */ |
| | | boolean saveBatchTaskResult(List<GdTaskResultEntity> gdTaskResultEntities); |
| | | |
| | | /** |
| | | * 根据ID更新成果信息(更新所有字段) |
| | | * |
| | | * @param taskResult 成果实体 |
| | | * @return 是否成功 |
| | | */ |
| | | boolean updateTaskResultById(GdTaskResultEntity taskResult); |
| | | |
| | | /** |
| | | * 批量下载成果文件(打包成ZIP) |
| | | * |
| | | * @param ids 成果ID列表(逗号分隔) |
| | | * @param response HTTP响应 |
| | | */ |
| | | void downloadResultFiles(String ids, HttpServletResponse response); |
| | | } |