Browse Source

修复任务刷新时间查不到的问题

欧阳劲驰 2 months ago
parent
commit
4f40777f3e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/main/resources/mapper/GisSurveyJobInfoMapper.xml

+ 1 - 1
src/main/resources/mapper/GisSurveyJobInfoMapper.xml

@@ -3,7 +3,7 @@
 <mapper namespace="com.shkpr.service.alambizplugin.dbdao.mapper.GisSurveyJobInfoMapper">
     <select id="findRefreshTimeByUid" resultType="java.time.LocalDateTime">
         select to_timestamp(refresh_time / 1000.0) AT TIME ZONE 'PRC'
-        from k3_gis_survey_project_info
+        from k3_gis_survey_job_info
         where uid = #{uid,jdbcType=VARCHAR};
     </select>
 </mapper>