From 97b1216bd4bd05352f9f7720833283ada4edf912 Mon Sep 17 00:00:00 2001 From: xuhy <3313886187@qq.com> Date: 星期四, 04 九月 2025 20:46:22 +0800 Subject: [PATCH] crm用户 --- ruoyi-system/src/main/resources/mapper/system/TSysOrderMapper.xml | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/ruoyi-system/src/main/resources/mapper/system/TSysOrderMapper.xml b/ruoyi-system/src/main/resources/mapper/system/TSysOrderMapper.xml index 8adf955..bd05255 100644 --- a/ruoyi-system/src/main/resources/mapper/system/TSysOrderMapper.xml +++ b/ruoyi-system/src/main/resources/mapper/system/TSysOrderMapper.xml @@ -21,5 +21,11 @@ <sql id="Base_Column_List"> id, app_user_id, inspection_id, order_number, total_money, check_time, create_time, update_time, create_by, update_by, disabled </sql> + <select id="queryListByAppUserId" resultType="com.ruoyi.system.vo.TSysOrderVO"> + select + <include refid="Base_Column_List"/> + from t_sys_order + where app_user_id = #{appUserId} and disabled = ${@com.ruoyi.common.enums.DisabledEnum@NO.getCode()} + </select> </mapper> -- Gitblit v1.7.1