refactor(aps): 重构排产单查询和导出功能

- 移除日期范围、产线ID和客户名称查询条件
- 修改排序规则为按业务序号升序排列
- 删除查询请求DTO中的废弃字段
- 优化Excel导出功能,添加标题动态显示和表头样式
- 实现前7列数据居中对齐和自动合并功能
- 修复POI依赖导入路径问题
- 更新转储订单项映射配置
This commit is contained in:
2026-03-27 18:21:53 +08:00
parent bc00846f14
commit ba722e0439
4 changed files with 94 additions and 45 deletions

View File

@@ -8,16 +8,6 @@ import java.time.LocalDate;
@Data
public class ApsPlanSheetQueryReq {
@DateTimeFormat(pattern = "yyyy-MM-dd")
private LocalDate startDate;
@DateTimeFormat(pattern = "yyyy-MM-dd")
private LocalDate endDate;
private Long lineId;
// planSheetId
private Long planSheetId;
private String customerName;
}