feat(wms): 新增钢卷待操作联查

- 在WmsCoilPendingActionMapper中添加selectVoPagePlus方法支持自定义查询
- 在WmsCoilPendingActionMapper.xml中实现selectVoPagePlus的SQL映射逻辑
- 修改WmsCoilPendingActionServiceImpl中的queryPageList方法以使用新的查询方式
- 新增buildQueryWrapperPlus方法构建更复杂的查询条件
- 在WmsCoilPendingActionVo中增加enterCoilNo、supplierCoilNo、itemId和itemType字段用于展示更多信息
This commit is contained in:
2025-11-18 14:44:52 +08:00
parent e9abd9051b
commit 1a5eadd99e
4 changed files with 52 additions and 2 deletions

View File

@@ -145,5 +145,10 @@ public class WmsCoilPendingActionVo extends BaseEntity implements Serializable {
* 重量
*/
private Double weight;
private String enterCoilNo;
private String supplierCoilNo;
private Long itemId;
private String itemType;
}