|
|
@@ -268,6 +268,13 @@ public interface QwExternalContactMapper extends BaseMapper<QwExternalContact> {
|
|
|
" <if test=\"companyUserId != null \"> and ec.company_user_id = #{companyUserId}</if>\n" +
|
|
|
" <if test=\"customerId != null \"> and ec.customer_id = #{customerId}</if>\n" +
|
|
|
" <if test=\"status != null \"> and ec.status = #{status}</if>\n" +
|
|
|
+ " <if test=\"status != null \"> and ec.status = #{status}</if>\n" +
|
|
|
+ "<if test = \"statusCondition != null and statusCondition.length > 0 \" > " +
|
|
|
+ " AND ec.status in " +
|
|
|
+ " <foreach collection='statusCondition' item='item' open='(' separator=',' close=')'> " +
|
|
|
+ " #{item} " +
|
|
|
+ " </foreach> " +
|
|
|
+ "</if >\n" +
|
|
|
" <if test=\"stageStatus != null \"> and ec.stage_status = #{stageStatus}</if>\n" +
|
|
|
" <if test=\"userRepeat != null \"> and ec.user_repeat = #{userRepeat}</if>\n" +
|
|
|
" <if test=\"transferStatus != null \"> and ec.transfer_status = #{transferStatus}</if>\n" +
|