From 941c656739a1fedb21d58fd8c63ade74a4f6a275 Mon Sep 17 00:00:00 2001 From: xin <1099200748@qq.com> Date: Thu, 10 Jul 2025 15:51:49 +0800 Subject: [PATCH] 审核退款订单 --- oying-system/src/main/resources/mapper/sh/OrderMapper.xml | 30 ++++++++++++++++++++++++++++-- 1 files changed, 28 insertions(+), 2 deletions(-) diff --git a/oying-system/src/main/resources/mapper/sh/OrderMapper.xml b/oying-system/src/main/resources/mapper/sh/OrderMapper.xml index 184665f..c647e5f 100644 --- a/oying-system/src/main/resources/mapper/sh/OrderMapper.xml +++ b/oying-system/src/main/resources/mapper/sh/OrderMapper.xml @@ -4,8 +4,13 @@ <resultMap id="BaseResultMap" type="com.oying.modules.sh.domain.Order"> <id column="order_id" property="orderId"/> <result column="order_num" property="orderNum"/> + <result column="order_status" property="orderStatus"/> + <result column="order_status_describe" property="orderStatusDescribe"/> <result column="user_id" property="userId"/> + <result column="username" property="username"/> <result column="store_id" property="storeId"/> + <result column="store_name" property="storeName"/> + <result column="store_logo" property="storeLogo"/> <result column="order_describe" property="orderDescribe"/> <result column="original_price" property="originalPrice"/> <result column="paid_price" property="paidPrice"/> @@ -29,8 +34,17 @@ </resultMap> <sql id="Base_Column_List"> - order_id, order_num, user_id, store_id, order_describe, original_price, paid_price, actually_pay_price, pay_state, pay_message, pay_type, pay_time, expire_time, openid, app_id, timestamp, nonce_str, package_val, sign_type, pay_sign, create_by, create_time, update_by, update_time + order_id, order_num, order_status, order_status_describe, user_id, username, store_id, store_name, store_logo, order_describe, original_price, paid_price, actually_pay_price, pay_state, pay_message, pay_type, pay_time, expire_time, openid, app_id, timestamp, nonce_str, package_val, sign_type, pay_sign, create_by, create_time, update_by, update_time </sql> + + <update id="updatePayStatus"> + update sh_order set pay_state = #{payState}, pay_message = #{payMessage}, + pay_time = #{payTime} where order_num = #{orderNum} + </update> + + <update id="updateCloseStatus"> + update sh_order set pay_state = #{payState} where order_num = #{orderNum} + </update> <select id="findAll" resultMap="BaseResultMap"> select @@ -40,8 +54,14 @@ <if test="criteria.orderNum != null"> and order_num like concat('%',#{criteria.orderNum},'%') </if> + <if test="criteria.orderStatus != null"> + and order_status = #{criteria.orderStatus} + </if> <if test="criteria.userId != null"> and user_id = #{criteria.userId} + </if> + <if test="criteria.username != null"> + and username like concat('%',#{criteria.username},'%') </if> <if test="criteria.storeId != null"> and store_id = #{criteria.storeId} @@ -64,4 +84,10 @@ </where> order by order_id desc </select> -</mapper> \ No newline at end of file + <select id="getByOrderNum" resultMap="BaseResultMap"> + select + <include refid="Base_Column_List"/> + from sh_order + where order_num = #{orderNum} + </select> +</mapper> -- Gitblit v1.9.3