统计报表接口,数据梳理接口

This commit is contained in:
shuo.wang
2025-05-15 15:31:23 +08:00
parent 177ff32f58
commit f253b2a0c3
15 changed files with 390 additions and 78 deletions

View File

@@ -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>