|
@@ -60,7 +60,23 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
</where>
|
|
|
order by create_time desc
|
|
|
</select>
|
|
|
-
|
|
|
+
|
|
|
+ <select id="selectPreprocessDataList" parameterType="TDataProcess" resultMap="TDataProcessResult">
|
|
|
+ <include refid="selectTDataProcessVo"/>
|
|
|
+ <where>
|
|
|
+ dp.process_type in ('0','1','2')
|
|
|
+ <if test="processType != null and processType != ''"> and dp.process_type = #{processType}</if>
|
|
|
+ <if test="processAlgId != null "> and dp.process_alg_id = #{processAlgId}</if>
|
|
|
+ <if test="processedDataId != null "> and dp.processed_data_id = #{processedDataId}</if>
|
|
|
+ <if test="resultDataId != null "> and dp.result_data_id = #{resultDataId}</if>
|
|
|
+ <if test="processStatus != null and processStatus != ''"> and dp.process_status = #{processStatus}</if>
|
|
|
+ <if test="startTime != null "> and dp.start_time = #{startTime}</if>
|
|
|
+ <if test="endTime != null "> and dp.end_time = #{endTime}</if>
|
|
|
+ <if test="log != null and log != ''"> and dp.log = #{log}</if>
|
|
|
+ </where>
|
|
|
+ order by create_time desc
|
|
|
+ </select>
|
|
|
+
|
|
|
<select id="selectTDataProcessById" parameterType="Long" resultMap="TDataProcessResult">
|
|
|
<include refid="selectTDataProcessVo"/>
|
|
|
where dp.id = #{id}
|