|
@@ -42,11 +42,11 @@
|
|
|
FROM project_user pu
|
|
|
LEFT JOIN user_info ui ON pu.user_id = ui.user_id
|
|
|
WHERE 1=1
|
|
|
- <if test="id!=null and id!=''">
|
|
|
- AND project_id = #{id,jdbcType=BIGINT}
|
|
|
+ <if test="request.id!=null and request.id!=''">
|
|
|
+ AND project_id = #{request.id,jdbcType=BIGINT}
|
|
|
</if>
|
|
|
- <if test="mtCompanyId!=null and mtCompanyId!=''">
|
|
|
- AND mt_company_id = #{mtCompanyId,jdbcType=BIGINT}
|
|
|
+ <if test="request.mtCompanyId!=null and request.mtCompanyId!=''">
|
|
|
+ AND mt_company_id = #{request.mtCompanyId,jdbcType=BIGINT}
|
|
|
</if>
|
|
|
</select>
|
|
|
|