|
|
|
@ -32,16 +32,13 @@
|
|
|
|
|
</where>
|
|
|
|
|
|
|
|
|
|
<choose>
|
|
|
|
|
<when test="(orderBy!=null ) and (sort=='desc' or sort=='asc')">
|
|
|
|
|
order by ${orderBy} ${sort}
|
|
|
|
|
<when test="(orderBy != null) and (sort == 'desc' or sort == 'asc')">
|
|
|
|
|
order by ${orderBy} ${sort}
|
|
|
|
|
</when>
|
|
|
|
|
<otherwise>
|
|
|
|
|
ORDER BY updateTime DESC
|
|
|
|
|
</otherwise>
|
|
|
|
|
</choose>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -51,23 +48,23 @@
|
|
|
|
|
INTO basic_export_status(id, idDatas, status, `type`, updateTime, scheduleType, startTime, endTime,
|
|
|
|
|
remark, receiveStatus
|
|
|
|
|
|
|
|
|
|
<if test="cacheFilePath!=null and cacheFilePath!= ''">
|
|
|
|
|
,cacheFilePath
|
|
|
|
|
<if test="cacheFilePath != null and cacheFilePath != ''">
|
|
|
|
|
, cacheFilePath
|
|
|
|
|
</if>
|
|
|
|
|
|
|
|
|
|
)
|
|
|
|
|
values (#{id},
|
|
|
|
|
#{idDatas},
|
|
|
|
|
#{status},
|
|
|
|
|
#{type},
|
|
|
|
|
#{updateTime},
|
|
|
|
|
#{scheduleType},
|
|
|
|
|
#{startTime},
|
|
|
|
|
#{endTime},
|
|
|
|
|
#{remark},
|
|
|
|
|
#{receiveStatus}
|
|
|
|
|
<if test="cacheFilePath!=null and cacheFilePath!= ''">
|
|
|
|
|
,#{cacheFilePath}
|
|
|
|
|
values (#{id},
|
|
|
|
|
#{idDatas},
|
|
|
|
|
#{status},
|
|
|
|
|
#{type},
|
|
|
|
|
#{updateTime},
|
|
|
|
|
#{scheduleType},
|
|
|
|
|
#{startTime},
|
|
|
|
|
#{endTime},
|
|
|
|
|
#{remark},
|
|
|
|
|
#{receiveStatus}
|
|
|
|
|
<if test="cacheFilePath != null and cacheFilePath != ''">
|
|
|
|
|
, #{cacheFilePath}
|
|
|
|
|
</if>
|
|
|
|
|
)
|
|
|
|
|
</insert>
|
|
|
|
@ -120,6 +117,16 @@
|
|
|
|
|
</delete>
|
|
|
|
|
|
|
|
|
|
<delete id="deleteByDate">
|
|
|
|
|
delete from basic_export_status where date_format(#{date}, '%Y-%m-%d') >= date_format(startTime, '%Y-%m-%d')
|
|
|
|
|
delete
|
|
|
|
|
from basic_export_status
|
|
|
|
|
where date_format(#{date}, '%Y-%m-%d') >= date_format(startTime, '%Y-%m-%d')
|
|
|
|
|
</delete>
|
|
|
|
|
<select id="findLast"
|
|
|
|
|
resultType="com.glxp.api.entity.sync.BasicExportStatusEntity">
|
|
|
|
|
select *
|
|
|
|
|
from basic_export_status
|
|
|
|
|
where idDatas = #{idDatas}
|
|
|
|
|
order by updateTime desc
|
|
|
|
|
limit 1
|
|
|
|
|
</select>
|
|
|
|
|
</mapper>
|
|
|
|
|