liyong
2026-04-20 842b948c71f7edc2812367b38799b01d3522b2f6
feat(customer): 添加客户私有池绑定ID查询条件

- 在CustomerPrivatePoolMapper.xml中新增boundId查询条件
- 支持通过boundId过滤客户私有池数据
- 保持原有查询逻辑不变,仅增加新的筛选条件
已修改1个文件
4 ■■■■ 文件已修改
src/main/resources/mapper/basic/CustomerPrivatePoolMapper.xml 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/resources/mapper/basic/CustomerPrivatePoolMapper.xml
@@ -41,6 +41,10 @@
            <if test="c.customerType != null">
                and c.customer_type = #{c.customerType}
            </if>
            <if test="c.boundId != null">
                and cpp.boundId = #{c.boundId}
            </if>
        </where>
        order by cpp.id desc
    </select>