From 735916a9ac00b8ef1a1e0a548e7804a3ffef396a Mon Sep 17 00:00:00 2001 From: wente <329538422@qq.com> Date: 星期五, 12 一月 2024 10:39:45 +0800 Subject: [PATCH] 项目表 --- modules/mainPart/src/main/resources/mapper/itemCirculatOrder/ItemCirculatOrderDao.xml | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/modules/mainPart/src/main/resources/mapper/itemCirculatOrder/ItemCirculatOrderDao.xml b/modules/mainPart/src/main/resources/mapper/itemCirculatOrder/ItemCirculatOrderDao.xml index f7ab446..0d956f7 100644 --- a/modules/mainPart/src/main/resources/mapper/itemCirculatOrder/ItemCirculatOrderDao.xml +++ b/modules/mainPart/src/main/resources/mapper/itemCirculatOrder/ItemCirculatOrderDao.xml @@ -6,7 +6,10 @@ <select id="getList" resultType="com.zt.life.modules.itemCirculatOrder.model.ItemCirculatOrder"> select a.*, p.software_name,p.software_identity from item_circulat_order a - INNER JOIN project p ON p.id = a.project_id + JOIN project p ON p.id = a.project_id + <if test="secretClass!=null"> + and p.secret_class <= #{secretClass} + </if> <where> a.is_delete = 0 and p.is_delete = 0 <if test="whereSql!=null"> -- Gitblit v1.9.1