Commit 50594f0b authored by sml's avatar sml

项目 名称 模糊查询

parent adcdbef9
...@@ -541,7 +541,7 @@ ...@@ -541,7 +541,7 @@
<if test="ownerId != null">AND owner_id = #{ownerId}</if> <if test="ownerId != null">AND owner_id = #{ownerId}</if>
<if test="productionId != null">AND production_id = #{productionId}</if> <if test="productionId != null">AND production_id = #{productionId}</if>
<if test="dataWarehouseId != null">AND data_warehouse_id = #{dataWarehouseId}</if> <if test="dataWarehouseId != null">AND data_warehouse_id = #{dataWarehouseId}</if>
<if test="name != null">AND name = #{name}</if> <if test="name != null">AND name LIKE CONCAT('%',#{name},'%')</if>
<if test="displayName != null">AND display_name = #{displayName}</if> <if test="displayName != null">AND display_name = #{displayName}</if>
<if test="projectDesc != null">AND project_desc = #{projectDesc}</if> <if test="projectDesc != null">AND project_desc = #{projectDesc}</if>
<if test="publishTargetId != null">AND publish_target_id = #{publishTargetId}</if> <if test="publishTargetId != null">AND publish_target_id = #{publishTargetId}</if>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment