refactor(mapper): 移除运单表中的删除标志字段映射

- 从主查询结果映射中移除 del_flag 字段
- 从关联查询结果映射中移除 del_flag 字段
- 简化数据传输对象结构
- 减少不必要的数据库字段映射
- 提升查询性能和代码简洁性
This commit is contained in:
2026-02-03 11:31:46 +08:00
parent eb541f850c
commit c80cf15730

View File

@@ -70,7 +70,6 @@
wd.principal_phone AS principal_phone,
wd.status AS status,
wd.remark AS remark,
wd.del_flag AS del_flag,
wd.create_time AS create_time,
wd.create_by AS create_by,
wd.update_time AS update_time,
@@ -99,7 +98,6 @@
wd.principal_phone AS principal_phone,
wd.status AS status,
wd.remark AS remark,
wd.del_flag AS del_flag,
wd.create_time AS create_time,
wd.create_by AS create_by,
wd.update_time AS update_time,