@@ -20,4 +20,5 @@ public class OpportunityQueryParam {
private Date establishTimeEnd;
private String keyword;
private String projectCode;
+ private String opportunityOwner;
}
@@ -125,6 +125,9 @@
<if test="projectCode != null and projectCode != ''">
AND m.project_code LIKE CONCAT('%', #{projectCode}, '%')
</if>
+ <if test="opportunityOwner != null and opportunityOwner != ''">
+ AND o.opportunity_owner LIKE CONCAT('%', #{opportunityOwner}, '%')
+ </if>
</where>
</select>