feat(crm): 添加销售异议管理中的钢卷信息关联功能

- 在 CrmSalesObjection 实体中新增 coilIds 字段用于存储钢卷ID集合
- 在查询接口中集成钢卷信息服务,实现销售异议与钢卷信息的关联查询
- 修改数据库映射文件,添加 coilIds 字段的映射关系
- 扩展查询条件构建逻辑,支持按钢卷ID进行筛选
- 新增 coilList 字段用于返回关联的钢卷信息列表
- 更新 application-prod.yml 中间件配置,修改 sql-server-api 主机地址为 140.143.206.120
This commit is contained in:
2026-05-11 10:05:50 +08:00
parent 856d52d6fc
commit 0a8bf00a64
6 changed files with 61 additions and 3 deletions

View File

@@ -19,6 +19,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<result property="remark" column="remark"/>
<result property="productCategory" column="product_category"/>
<result property="returnDate" column="return_date"/>
<result property="coilIds" column="coilIds"/>
<result property="complaintContent" column="complaint_content"/>
<result property="customerDemand" column="customer_demand"/>
<result property="createBy" column="create_by"/>