16 lines
664 B
XML
16 lines
664 B
XML
<?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.imyeyu.api.modules.gao.mapper.GaoPointRuleMapper">
|
|
<select id="selectActiveByStoreIdAndEventId" resultType="com.imyeyu.api.modules.gao.entity.GaoPointRule">
|
|
SELECT *
|
|
FROM `gao_point_rule`
|
|
WHERE `store_id` = #{storeId}
|
|
AND `event_id` = #{eventId}
|
|
AND `status` = 'ACTIVE'
|
|
AND (`begin_at` IS NULL OR `begin_at` <= #{now})
|
|
AND (`end_at` IS NULL OR #{now} <= `end_at`)
|
|
AND `deleted_at` IS NULL
|
|
ORDER BY `priority` ASC, `created_at` ASC, `id` ASC
|
|
</select>
|
|
</mapper>
|