feat(wms): 增加物料卷表字段查询支持

- 添加删除标识字段(del_flag)到查询结果- 添加创建时间(create_time)和更新时间(update_time)字段- 添加创建人(create_by)和更新人(update_by)字段
- 保持原有仓库关联查询逻辑不变
This commit is contained in:
2025-10-31 11:40:25 +08:00
parent 398def2341
commit 93cd0e5238

View File

@@ -82,6 +82,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
mc.status,
mc.remark,
mc.warehouse_id,
mc.del_flag,
mc.create_time,
mc.update_time,
mc.create_by,
mc.update_by,
w.warehouse_name AS warehouseName
FROM wms_material_coil mc
LEFT JOIN wms_warehouse w ON mc.warehouse_id = w.warehouse_id