feat(crm): 修改订单查询功能

- 添加CrmOrderMapper接口方法selectVoPagePlus
- 实现对应的XML查询语句,支持联表查询客户名称
- 在CrmOrderServiceImpl中实现新的分页查询逻辑
- 引入QueryWrapper构建动态查询条件
- 增加客户名称字段到CrmOrderVo视图对象
- 优化查询性能,支持复杂条件筛选和排序
This commit is contained in:
2025-12-16 16:38:39 +08:00
parent 87feb77aae
commit 6243c3d994
4 changed files with 55 additions and 2 deletions

View File

@@ -107,5 +107,7 @@ public class CrmOrderVo {
@ExcelProperty(value = "备注")
private String remark;
//联查客户名称
private String customerName;
}