xiaoyong931011
2021-07-07 dc3beb5e2c9c62bfc40330201ace94f781d28fd2
gc-user/src/main/resources/mapper/user/OrderMapper.xml
@@ -574,4 +574,14 @@
            a.status != '5'
            and a.user_id = #{userId}
    </select>
    <select id="selectOrderByUserId" resultType="com.xzx.gc.entity.OrderInfo">
        SELECT
            a.*
        FROM
            xzx_order_info a
        WHERE
            a.order_status != '6'
            and a.create_user_id = #{userId}
    </select>
</mapper>