From a38a1ac77bb6ac9ea8bf0cf5f5f6b68d0e6e6974 Mon Sep 17 00:00:00 2001 From: jinlin <jinlin> Date: 星期二, 02 一月 2024 08:44:10 +0800 Subject: [PATCH] 修改 --- modules/mainPart/src/main/resources/mapper/project/EnvironSoftwareResourcesDao.xml | 5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-) diff --git a/modules/mainPart/src/main/resources/mapper/project/EnvironSoftwareResourcesDao.xml b/modules/mainPart/src/main/resources/mapper/project/EnvironSoftwareResourcesDao.xml index d55ed3e..96b2144 100644 --- a/modules/mainPart/src/main/resources/mapper/project/EnvironSoftwareResourcesDao.xml +++ b/modules/mainPart/src/main/resources/mapper/project/EnvironSoftwareResourcesDao.xml @@ -2,14 +2,13 @@ <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> <mapper namespace="com.zt.life.modules.project.dao.EnvironSoftwareResourcesDao"> - <select id="getList" resultType="com.zt.life.modules.project.model.EnvironSoftwareResources"> select a.* from environ_software_resources a <where> a.is_delete = 0 - <if test="whereSql!=null"> - and ${whereSql} + <if test="environId!=null"> + and environ_id = ${environId} </if> </where> <if test="orderBySql!=null"> -- Gitblit v1.9.1