bug
This commit is contained in:
parent
c0a282e71c
commit
c45207dc8f
@ -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>
|
Loading…
Reference in New Issue
Block a user