From 10fdc02eb340cac4adc87c708556e27daa3b6e1b Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Thu, 07 Jul 2022 19:47:26 +0800 Subject: [PATCH] 20220606 --- src/main/resources/mapper/ArticleMapper.xml | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/resources/mapper/ArticleMapper.xml b/src/main/resources/mapper/ArticleMapper.xml index 9e2ea47..746325a 100644 --- a/src/main/resources/mapper/ArticleMapper.xml +++ b/src/main/resources/mapper/ArticleMapper.xml @@ -12,9 +12,9 @@ <where> and a.del_status = 1 <if test="record != null" > - <if test="record.columnlist != null"> + <if test="record.columnList != null"> and a.column_id in - <foreach collection="record.columnlist" separator="," close=")" open="(" item="item"> + <foreach collection="record.columnList" separator="," close=")" open="(" item="item"> #{item} </foreach> </if> -- Gitblit v1.9.1