This commit is contained in:
齐天大圣 2024-03-12 15:57:19 +08:00
parent c0a282e71c
commit c45207dc8f

View File

@ -0,0 +1,30 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.fuint.business.marketingActivity.activeApplet.mapper.ActiveAppletMapper">
<select id="selectApplet"
resultType="com.fuint.business.marketingActivity.activeApplet.entity.ActiveApplet">
SELECT
DISTINCT
*
FROM
active_applet
where
store_id = #{storeId}
GROUP BY
type
ORDER BY create_time desc
</select>
<select id="appletActiveByType"
resultType="com.fuint.business.marketingActivity.activeApplet.entity.ActiveApplet">
SELECT
*
FROM
active_applet
WHERE type = #{type}
and store_id = #{storeId}
ORDER BY create_time desc
</select>
</mapper>