puzhibing
2024-02-05 640ff18d2d7f4be02ddb7f8f75e899f05545eb98
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<?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.dsh.activity.mapper.PointsMerchandiseMapper">
 
 
    <select id="queryGoodsListOfSearch" resultType="java.util.Map">
        SELECT id,
        `name`,
        `cover`,
        `type`,
        date_format(startTime ,'%Y-%m-%d') as startTime,
        date_format(endTime ,'%Y-%m-%d') as endTime,
        useScope,
        userPopulation,
        quantityIssued,
        pickUpQuantity,
        `sort`,
        shelves
 
        from t_points_merchandise
        <where>
            <if test="name != null">
                and `name` like concat('%', #{name}, '%')
            </if>
            <if test="type != null">
                and `type` = #{type}
            </if>
            <if test="redemptionMethod != null">
                and redemptionMethod = #{redemptionMethod}
            </if>
            <if test="userPopulation != null">
                and userPopulation = #{userPopulation}
            </if>
            <if test="state != null">
                and `state` = #{state}
            </if>
            and `type` != 3
        </where>
        order by insertTime desc
    </select>
    <select id="queryGoodsListOfSearchAudit" resultType="java.util.Map">
        SELECT id,
        `name`,
        `cover`,
        `type`,
        date_format(startTime ,'%Y-%m-%d') as startTime,
        date_format(endTime ,'%Y-%m-%d') as endTime,
        useScope,
        userPopulation,
        quantityIssued,
        pickUpQuantity,
        `sort`,
        shelves,
        status
        from t_points_merchandise
        where type =3 and `status` !=1
        <if test="name != null">
            and `name` like concat('%', #{name}, '%')
        </if>
        <if test="type != null">
            and cardType = #{type}
        </if>
        <if test="redemptionMethod != null">
            and redemptionMethod = #{redemptionMethod}
        </if>
        <if test="userPopulation != null">
            and userPopulation = #{userPopulation}
        </if>
        <if test="activeStatus != null">
            and `status` = #{activeStatus}
        </if>
        order by insertTime desc
    </select>
    <select id="ticketList" resultType="java.util.Map">
        SELECT id,
        `name`,
        cardType,
        `cover`,
        date_format(startTime ,'%Y-%m-%d') as startTime,
        date_format(endTime ,'%Y-%m-%d') as endTime,
        `type`,
        useScope,
        userPopulation,
        quantityIssued,
        pickUpQuantity,
        `sort`,
        shelves,
        status auditStatus
        from t_points_merchandise
        where 1=1
 
        <if test="query.objType == 1">
            and status =1
        </if>
        <if test="query.name != null">
            and `name` like concat('%', #{query.name}, '%')
        </if>
        <if test="query.type != null">
            and cardType = #{query.type}
        </if>
        <if test="query.redemptionMethod != null">
            and redemptionMethod = #{query.redemptionMethod}
        </if>
        <if test="query.userPopulation != null">
            and userPopulation = #{query.userPopulation}
        </if>
        <if test="query.state != null">
            and `state` = #{query.state}
        </if>
        and `type` = 3
        order by sort desc
    </select>
    <select id="changeState">
        update t_points_merchandise set
        shelves = #{state}
        <where>
            <if test="ids != null and ids.size()>0">
                AND t_points_merchandise.id IN
                <foreach collection="ids" separator="," item="id" open="(" close=")">
                    #{id}
                </foreach>
            </if>
        </where>
    </select>
 
 
    <insert id="saveCity">
        insert into t_points_merchandise_city (id,pointsMerchandiseId,city,cityCode,province,provinceCode) value (null ,#{id},#{city},#{cityCode},#{province},#{provinceCode})
    </insert>
 
</mapper>