feat(aps): 添加排产单导出功能
- 新增 ApsPlanSheetQueryReq 查询参数类 - 新增 ApsPlanSheetRowVo 数据传输对象 - 实现 controller 层 exportAll 接口 - 实现 service 层 exportExcel 导出逻辑 - 添加 mapper 层 selectList 查询方法 - 配置 mybatis xml 查询映射 - 优化 Excel 导出样式和数据处理
This commit is contained in:
@@ -1,10 +1,13 @@
|
||||
package com.klp.aps.service;
|
||||
|
||||
import com.klp.aps.domain.dto.ApsPlanSheetQueryReq;
|
||||
import com.klp.aps.domain.dto.ApsQuickSheetQueryReq;
|
||||
import com.klp.aps.domain.vo.ApsPlanSheetVo;
|
||||
import com.klp.aps.domain.bo.ApsPlanSheetBo;
|
||||
import com.klp.common.core.page.TableDataInfo;
|
||||
import com.klp.common.core.domain.PageQuery;
|
||||
|
||||
import javax.servlet.http.HttpServletResponse;
|
||||
import java.util.Collection;
|
||||
import java.util.List;
|
||||
|
||||
@@ -45,4 +48,7 @@ public interface IApsPlanSheetService {
|
||||
* 校验并批量删除排产单主信息
|
||||
*/
|
||||
Boolean deleteWithValidByIds(Collection<Long> ids, Boolean isValid);
|
||||
|
||||
|
||||
void exportExcel(ApsPlanSheetQueryReq req, HttpServletResponse response);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user