Browse Source

2025-03-26

master
qiezi 10 months ago
parent
commit
8729cafb50
  1. 3
      src/main/resources/mapper/project/ProjectDao.xml

3
src/main/resources/mapper/project/ProjectDao.xml

@ -98,6 +98,9 @@
<if test="query.projectId != null and query.projectId != ''">
AND project_id like #{query.projectId}
</if>
<if test="query.projectName != null and query.projectName != ''">
AND plm_project_info.project_name like #{query.projectName}
</if>
<if test="query.projectType != null and query.projectType != ''">
AND plm_project_info.project_type_db like #{query.projectType}
</if>

Loading…
Cancel
Save