247 lines
8.1 KiB
XML
247 lines
8.1 KiB
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.ycwl.basic.mapper.StatisticsMapper">
|
|
<select id="countOrderAmount" resultType="java.math.BigDecimal">
|
|
select ifnull(sum(pay_price),0) as payPrice
|
|
from `order`
|
|
where
|
|
status = 1 and scenic_id = #{scenicId}
|
|
<if test="startTime!= null">
|
|
and create_at >= #{startTime}
|
|
</if>
|
|
<if test="endTime!= null">
|
|
and create_at <= #{endTime}
|
|
</if>
|
|
</select>
|
|
<select id="countPreviewVideoOfMember" resultType="java.lang.Integer">
|
|
SELECT
|
|
IFNULL(SUM(count), 0) AS count
|
|
FROM (
|
|
select count(1) as count
|
|
from statistics
|
|
where type=2 and scenic_id = #{scenicId}
|
|
<if test="startTime!= null">
|
|
and create_time >= #{startTime}
|
|
</if>
|
|
<if test="endTime!= null">
|
|
and create_time <= #{endTime}
|
|
</if>
|
|
group by member_id
|
|
)a
|
|
</select>
|
|
<select id="countScanCodeOfMember" resultType="java.lang.Integer">
|
|
SELECT
|
|
IFNULL(SUM(count), 0) AS count
|
|
FROM (
|
|
select count(1) as count
|
|
from statistics
|
|
where type=0 and scenic_id = #{scenicId}
|
|
<if test="startTime!= null">
|
|
and create_time >= #{startTime}
|
|
</if>
|
|
<if test="endTime!= null">
|
|
and create_time <= #{endTime}
|
|
</if>
|
|
group by member_id
|
|
) AS subquery;
|
|
</select>
|
|
<select id="countClickPayOfMember" resultType="java.lang.Integer">
|
|
SELECT
|
|
IFNULL(SUM(count), 0) AS count
|
|
FROM (
|
|
select count(1) as count
|
|
from statistics
|
|
where type=9 and scenic_id = #{scenicId}
|
|
<if test="startTime!= null">
|
|
and create_time >= #{startTime}
|
|
</if>
|
|
<if test="endTime!= null">
|
|
and create_time <= #{endTime}
|
|
</if>
|
|
group by member_id
|
|
)a
|
|
</select>
|
|
<select id="countPayOfMember" resultType="java.lang.Integer">
|
|
SELECT
|
|
IFNULL(SUM(count), 0) AS count
|
|
FROM (
|
|
select count(1) as count
|
|
from statistics
|
|
where type in(3,4) and scenic_id = #{scenicId}
|
|
<if test="startTime!= null">
|
|
and create_time >= #{startTime}
|
|
</if>
|
|
<if test="endTime!= null">
|
|
and create_time <= #{endTime}
|
|
</if>
|
|
group by member_id
|
|
)a
|
|
</select>
|
|
<select id="countSceneOrderNum" resultType="java.lang.Integer">
|
|
SELECT
|
|
IFNULL(SUM(count), 0) AS count
|
|
FROM (
|
|
select count(1) as count
|
|
from statistics
|
|
where type=3 and scenic_id = #{scenicId}
|
|
<if test="startTime!= null">
|
|
and create_time >= #{startTime}
|
|
</if>
|
|
<if test="endTime!= null">
|
|
and create_time <= #{endTime}
|
|
</if>
|
|
group by morph_id
|
|
)a
|
|
</select>
|
|
<select id="countPushOrderNum" resultType="java.lang.Integer">
|
|
SELECT
|
|
IFNULL(SUM(count), 0) AS count
|
|
FROM (
|
|
select count(1) as count
|
|
from statistics
|
|
where type=4 and scenic_id = #{scenicId}
|
|
<if test="startTime!= null">
|
|
and create_time >= #{startTime}
|
|
</if>
|
|
<if test="endTime!= null">
|
|
and create_time <= #{endTime}
|
|
</if>
|
|
group by morph_id
|
|
)a
|
|
</select>
|
|
<select id="countPushOfMember" resultType="java.lang.Integer">
|
|
SELECT
|
|
IFNULL(SUM(count), 0) AS count
|
|
FROM (
|
|
select count(1) as count
|
|
from statistics
|
|
where type=6 and scenic_id = #{scenicId}
|
|
<if test="startTime!= null">
|
|
and create_time >= #{startTime}
|
|
</if>
|
|
<if test="endTime!= null">
|
|
and create_time <= #{endTime}
|
|
</if>
|
|
group by member_id
|
|
)a
|
|
</select>
|
|
<select id="countCameraShotOfMember" resultType="java.lang.Integer">
|
|
select count(1) as count
|
|
from face_sample
|
|
where scenic_id = #{scenicId}
|
|
<if test="startTime!= null">
|
|
and create_at >= #{startTime}
|
|
</if>
|
|
<if test="endTime!= null">
|
|
and create_at <= #{endTime}
|
|
</if>
|
|
</select>
|
|
<select id="countUploadFaceOfMember" resultType="java.lang.Integer">
|
|
select count(1) as count
|
|
from face
|
|
where scenic_id = #{scenicId}
|
|
<if test="startTime!= null">
|
|
and create_at >= #{startTime}
|
|
</if>
|
|
<if test="endTime!= null">
|
|
and create_at <= #{endTime}
|
|
</if>
|
|
</select>
|
|
<select id="countCompleteVideoOfMember" resultType="java.lang.Integer">
|
|
select ifnull(sum(count),0) as count
|
|
from(
|
|
select count(1) as count
|
|
from video
|
|
where scenic_id = #{scenicId}
|
|
<if test="startTime!= null">
|
|
and create_time >= #{startTime}
|
|
</if>
|
|
<if test="endTime!= null">
|
|
and create_time <= #{endTime}
|
|
</if>
|
|
group by member_id
|
|
)a
|
|
</select>
|
|
<select id="countTotalVisitorOfMember" resultType="java.lang.Integer">
|
|
SELECT
|
|
IFNULL(SUM(count), 0) AS count
|
|
FROM (
|
|
select count(1) as count
|
|
from statistics
|
|
where type=0 and scenic_id = #{scenicId}
|
|
<if test="startTime!= null">
|
|
and create_time >= #{startTime}
|
|
</if>
|
|
<if test="endTime!= null">
|
|
and create_time <= #{endTime}
|
|
</if>
|
|
group by member_id
|
|
) AS a;
|
|
</select>
|
|
<select id="countCompleteOfVideo" resultType="java.lang.Integer">
|
|
select count(1) as count
|
|
from video
|
|
where scenic_id = #{scenicId}
|
|
<if test="startTime!= null">
|
|
and create_time >= #{startTime}
|
|
</if>
|
|
<if test="endTime!= null">
|
|
and create_time <= #{endTime}
|
|
</if>
|
|
</select>
|
|
<select id="countPreviewOfVideo" resultType="java.lang.Integer">
|
|
SELECT
|
|
IFNULL(SUM(count), 0) AS count
|
|
FROM (
|
|
select count(1) as count
|
|
from statistics
|
|
where type=0 and scenic_id = #{scenicId}
|
|
<if test="startTime!= null">
|
|
and create_time >= #{startTime}
|
|
</if>
|
|
<if test="endTime!= null">
|
|
and create_time <= #{endTime}
|
|
</if>
|
|
group by morph_id
|
|
)a
|
|
</select>
|
|
<select id="countPayOfOrder" resultType="java.lang.Integer">
|
|
SELECT
|
|
IFNULL(SUM(count), 0) AS count
|
|
FROM (
|
|
select count(1) as count
|
|
from statistics
|
|
where type in(3,4) and scenic_id = #{scenicId}
|
|
<if test="startTime!= null">
|
|
and create_time >= #{startTime}
|
|
</if>
|
|
<if test="endTime!= null">
|
|
and create_time <= #{endTime}
|
|
</if>
|
|
group by morph_id
|
|
)a
|
|
</select>
|
|
<select id="countRefundOfOrder" resultType="java.lang.Integer">
|
|
select count(1) as count
|
|
from statistics
|
|
where type =5 and scenic_id = #{scenicId}
|
|
<if test="startTime!= null">
|
|
and create_time >= #{startTime}
|
|
</if>
|
|
<if test="endTime!= null">
|
|
and create_time <= #{endTime}
|
|
</if>
|
|
</select>
|
|
<select id="countRefundAmount" resultType="java.math.BigDecimal">
|
|
select ifnull(sum(pay_price),0) as payPrice
|
|
from `order`
|
|
where
|
|
status = 2 and scenic_id = #{scenicId}
|
|
<if test="startTime!= null">
|
|
and create_at >= #{startTime}
|
|
</if>
|
|
<if test="endTime!= null">
|
|
and create_at <= #{endTime}
|
|
</if>
|
|
</select>
|
|
</mapper> |