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

作业计划逻辑整改--shizhilong

parent f068b095
...@@ -38,19 +38,16 @@ ...@@ -38,19 +38,16 @@
<if test="dto.lineAliasId != null and dto.lineAliasId != ''"> <if test="dto.lineAliasId != null and dto.lineAliasId != ''">
AND t1.line_alias_id = #{dto.lineAliasId} AND t1.line_alias_id = #{dto.lineAliasId}
</if> </if>
<if test="dto.source != null and dto.source != ''"> <if test="dto.source != null">
AND t1.source = #{dto.source} AND t1.source = #{dto.source}
</if> </if>
<if test="dto.analysisType != null and dto.analysisType != ''"> <if test="dto.analysisType != null">
AND t1.analysis_type = #{dto.analysisType} AND t1.analysis_type = #{dto.analysisType}
</if> </if>
<if test="dto.analysisType != null and dto.analysisType != ''"> <if test="dto.workStatus != null">
AND t1.analysis_type = #{dto.analysisType}
</if>
<if test="dto.workStatus != null and dto.workStatus != ''">
AND t1.work_status = #{dto.workStatus} AND t1.work_status = #{dto.workStatus}
</if> </if>
<if test="dto.workType != null and dto.workType != ''"> <if test="dto.workType != null">
AND t1.work_type = #{dto.workType} AND t1.work_type = #{dto.workType}
</if> </if>
<if test="dto.team != null and dto.team != ''"> <if test="dto.team != null and dto.team != ''">
......
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