统计报表接口,数据梳理接口
This commit is contained in:
@@ -42,4 +42,18 @@
|
||||
</if>
|
||||
</where>
|
||||
</select>
|
||||
<select id="queryBigRegion" resultType="com.cool.store.dto.region.BigRegionDTO">
|
||||
select *
|
||||
from `xfsg_big_region`
|
||||
where join_mode = 0
|
||||
<if test="request.keyword!=null and request.keyword !=''">
|
||||
and region_name like CONCAT('%',#{request.keyword},'%')
|
||||
</if>
|
||||
<if test="request.groupNameList!=null and request.groupNameList.size()>0">
|
||||
and group_name in
|
||||
<foreach item="item" collection="request.groupNameList" index="index" open="(" close=")" separator=",">
|
||||
#{item}
|
||||
</foreach>
|
||||
</if>
|
||||
</select>
|
||||
</mapper>
|
||||
Reference in New Issue
Block a user