|
@@ -78,6 +78,18 @@ public interface QwTagGroupMapper
|
|
|
"</script>"})
|
|
"</script>"})
|
|
|
List<QwTagGroupListVO> selectQwTagGroupListVO(QwTagGroup qwTagGroup);
|
|
List<QwTagGroupListVO> selectQwTagGroupListVO(QwTagGroup qwTagGroup);
|
|
|
|
|
|
|
|
|
|
+ @Select({"<script> " +
|
|
|
|
|
+ "select * from qw_tag_group "+
|
|
|
|
|
+ "<where>\n" +
|
|
|
|
|
+ " <if test=\"groupId != null and groupId != ''\"> and group_id = #{groupId}</if>\n" +
|
|
|
|
|
+ " <if test=\"name != null and name != ''\"> and name like concat( '%',#{name}, '%')</if>\n" +
|
|
|
|
|
+ " <if test=\"order != null and order != ''\"> and order = #{order}</if>\n" +
|
|
|
|
|
+ " <if test=\"corpId != null and corpId != ''\"> and corp_id = #{corpId}</if>\n" +
|
|
|
|
|
+ " <if test=\"companyId != null \"> and company_id = #{companyId}</if>\n" +
|
|
|
|
|
+ " </where> order by `order` desc ,id desc"+
|
|
|
|
|
+ "</script>"})
|
|
|
|
|
+ List<QwTagGroupListVO> selectQwTagGroupListVOPage(QwTagGroup qwTagGroup);
|
|
|
|
|
+
|
|
|
@Select("select * from qw_tag_group where id=#{id}")
|
|
@Select("select * from qw_tag_group where id=#{id}")
|
|
|
QwTagGroupVO selectQwTagGroupByIdVO(Long id);
|
|
QwTagGroupVO selectQwTagGroupByIdVO(Long id);
|
|
|
|
|
|