Merge branch 'master' of http://192.168.1.13:3000/root/govern
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
@@ -69,8 +69,10 @@
|
||||
cs_group
|
||||
where
|
||||
data_set_id = #{id} and is_show = 1
|
||||
order by
|
||||
sort
|
||||
<if test="searchValue != null and searchValue !=''">
|
||||
and group_name like concat('%',#{searchValue},'%')
|
||||
</if>
|
||||
order by sort
|
||||
</select>
|
||||
|
||||
</mapper>
|
||||
Reference in New Issue
Block a user