Commit 8ca22c92 by huangZW

111

parent 66c7eb03
...@@ -401,7 +401,7 @@ ...@@ -401,7 +401,7 @@
<if test="auditStatus != null and auditStatus != -1"> <if test="auditStatus != null and auditStatus != -1">
and audit_status = #{auditStatus} and audit_status = #{auditStatus}
</if> </if>
order by create_time desc order by update_time desc
</select> </select>
......
...@@ -126,7 +126,9 @@ public class AuditController extends WebBaseController{ ...@@ -126,7 +126,9 @@ public class AuditController extends WebBaseController{
vo.setFailReason(auditDTO.getAuditReason()); vo.setFailReason(auditDTO.getAuditReason());
vo.setStaffName(auditDTO.getCommitName()); vo.setStaffName(auditDTO.getCommitName());
vo.setClerkName(auditDTO.getCommitName()); vo.setClerkName(auditDTO.getCommitName());
vo.setUpdateTime(auditDTO.getUpdateTime()); if(auditDTO.getAuditType() != 0){
vo.setUpdateTime(auditDTO.getUpdateTime());
}
voList.add(vo); voList.add(vo);
} }
Page<AuditVO> pageVO = new Page<>(); Page<AuditVO> pageVO = new Page<>();
......
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