liyong
2026-04-20 e867574bc15d6976c05e3e376e0cb8d0b5081ea1
fix(database): 修正客户私有池映射中的字段名错误

- 将 boundId 字段名更正为 bound_id 以匹配数据库实际列名
已修改1个文件
3 ■■■■ 文件已修改
src/main/resources/mapper/basic/CustomerPrivatePoolMapper.xml 3 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/resources/mapper/basic/CustomerPrivatePoolMapper.xml
@@ -42,9 +42,8 @@
                and c.customer_type = #{c.customerType}
            </if>
            <if test="c.boundId != null">
                and cpp.boundId = #{c.boundId}
                and cpp.bound_id = #{c.boundId}
            </if>
        </where>
        order by cpp.id desc
    </select>