Commit d8ee0ae6 authored by lcl's avatar lcl

查询字段添加

parent 5551f0aa
...@@ -19,6 +19,10 @@ public class CustomerBusinessSearchDto implements Serializable { ...@@ -19,6 +19,10 @@ public class CustomerBusinessSearchDto implements Serializable {
* 企业id * 企业id
*/ */
private Long userId; private Long userId;
/**
* 项目名称
*/
private String projectName;
/** /**
* 项目阶段 * 项目阶段
*/ */
......
...@@ -388,6 +388,7 @@ ...@@ -388,6 +388,7 @@
from business_info bi from business_info bi
left join business_user bu on bi.id = bu.business_id left join business_user bu on bi.id = bu.business_id
where bi.customer_id = #{customerId} and (bu.user_id = #{userId} or bi.is_private = 1) where bi.customer_id = #{customerId} and (bu.user_id = #{userId} or bi.is_private = 1)
<if test="projectName != null and projectName != '' "> and bi.project_name like concat('%',#{projectName},'%') </if>
<if test="projectStage != null and projectStage != '' "> and bi.project_stage = #{projectStage}</if> <if test="projectStage != null and projectStage != '' "> and bi.project_stage = #{projectStage}</if>
<if test="status != null "> and bi.status = #{status}</if> <if test="status != null "> and bi.status = #{status}</if>
order by bi.create_time desc order by bi.create_time desc
......
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