Helius
2021-05-12 4b703e146ff26bf7d84ed93b0dbb6acd96e64c4d
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
<?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.xcong.excoin.modules.yunding.dao.YdOrderDao">
 
    <select id="getOrderList" resultType="com.xcong.excoin.modules.yunding.vo.YdOrderVo">
        SELECT
        *
        FROM
        yd_order a
        left join yd_product b on b.id = a.product_id
        <if test="record != null">
            <where>
                and a.member_id = #{record.memberId}
                <if test="record.state != null" >
                    and a.state=#{record.state}
                </if>
            </where>
        </if>
        ORDER BY a.create_time DESC
    </select>
 
    <select id="selectNeedReturnOrders" resultType="com.xcong.excoin.modules.yunding.entity.YdOrderEntity">
        select a.*, b.* from yd_order a
        left join yd_product b on a.product_id=b.id
        where a.state=2 and a.return_state=1
    </select>
 
    <resultMap id="orderMap" type="com.xcong.excoin.modules.yunding.entity.YdOrderEntity">
        <id column="id" property="id" />
        <result column="member_id" property="memberId" />
        <result column="product_id" property="productId" />
        <result column="quantity" property="quantity" />
        <result column="amount" property="amount" />
        <result column="member_id" property="memberId" />
        <result column="total_profit" property="totalProfit" />
        <result column="today_profit" property="totalProfit" />
        <result column="state" property="state" />
        <result column="buy_time" property="buyTime" />
        <result column="work_time" property="workTime" />
        <result column="end_time" property="endTime" />
        <result column="create_by" property="createBy" />
        <result column="return_state" property="returnState" />
        <result column="return_type" property="returnType" />
        <association property="ydProductEntity" javaType="com.xcong.excoin.modules.yunding.entity.YdProductEntity">
            <id column="p_id" property="id" />
            <result column="pro_unit" property="proUnit" />
        </association>
    </resultMap>
 
    <select id="selectAllValidOrders" resultMap="orderMap">
        select a.*, b.id p_id, b.pro_unit from yd_order a
        inner join yd_product b on a.product_id=b.id
        where a.state=2
    </select>
 
    <update id="UpdateByIdAndState">
        UPDATE yd_order s
        SET s.state = #{state}
        WHERE
            id = #{id}
    </update>
 
    <select id="selectOrderByMemberIdAndId" resultType="com.xcong.excoin.modules.yunding.vo.YdOrderVo">
        SELECT
        *
        FROM
        yd_order a
        left join yd_product b on b.id = a.product_id
        where a.member_id = #{memberId}
        and a.id = #{id}
    </select>
 
</mapper>