Commit a4986473 authored by 史志龙's avatar 史志龙

作业查询逻辑提交--shizhilong

parent ff26a208
......@@ -38,6 +38,24 @@
<if test="dto.lineAliasId != null and dto.lineAliasId != ''">
AND t1.line_alias_id = #{dto.lineAliasId}
</if>
<if test="dto.source != null and dto.source != ''">
AND t1.source = #{dto.source}
</if>
<if test="dto.analysisType != null and dto.analysisType != ''">
AND t1.analysis_type = #{dto.analysisType}
</if>
<if test="dto.analysisType != null and dto.analysisType != ''">
AND t1.analysis_type = #{dto.analysisType}
</if>
<if test="dto.workStatus != null and dto.workStatus != ''">
AND t1.work_status = #{dto.workStatus}
</if>
<if test="dto.workType != null and dto.workType != ''">
AND t1.work_type = #{dto.workType}
</if>
<if test="dto.team != null and dto.team != ''">
AND t1.team = #{dto.team}
</if>
ORDER BY t1.create_time DESC
</select>
......
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