fix(oa): 修复仓库主表查询返回值问题

- 在仓库主表查询中添加 select("sowm.*") 以确保返回正确的字段
- 修复了之前可能返回多余字段或缺少字段的问题
This commit is contained in:
2025-08-19 17:01:26 +08:00
parent e2500e06df
commit 1e6cc05eba

View File

@@ -92,6 +92,7 @@ public class SysOaWarehouseMasterServiceImpl implements ISysOaWarehouseMasterSer
// 其他过滤……
.eq("sowm.del_flag",0)
.orderByDesc("sowm.update_time");
lqw.select("sowm.*");
return lqw;
}