代码调整

This commit is contained in:
2023-07-05 08:58:33 +08:00
parent 1b3013e87a
commit cfeb84a9d4
9 changed files with 33 additions and 24 deletions

View File

@@ -24,5 +24,5 @@ public interface CsGroupMapper extends BaseMapper<CsGroup> {
List<CsGroupVO> getArrayData(@Param("list") List<String> list);
Page<DataGroupTemplateVO> getGroupDataList(IPage<DataGroupTemplateVO> page, @Param("id") String id);
Page<DataGroupTemplateVO> getGroupDataList(IPage<DataGroupTemplateVO> page, @Param("id") String id, @Param("searchValue") String searchValue);
}

View File

@@ -68,7 +68,7 @@
from
cs_group
where
data_set_id = #{id} and is_show = 1
data_set_id = #{id} and is_show = 1 and group_name like concat('%',#{searchValue},'%')
order by
sort
</select>