Browse Source

项目操作日志修改

anderx 3 years ago
parent
commit
6fce064248
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/main/java/com/goafanti/common/mapper/TaskLogMapper.xml

+ 1 - 1
src/main/java/com/goafanti/common/mapper/TaskLogMapper.xml

@@ -98,7 +98,7 @@
 
   <select id="selectTaskLogList" resultType="com.goafanti.order.bo.TaskLogBo">
     select a.id,a.task_id taskId,a.content,date_format(a.create_time,'%Y-%m-%d %H:%i:%S') as createTimes,b.name as aName,
-           a.stop_id ,c.reason
+           a.stop_id stopId ,c.reason
     from task_log a left join admin b on a.aid=b.id left join task_stop c on a.stop_id =c.id
     where a.task_id= #{id,jdbcType=INTEGER} order by a.create_time
   </select>