From 41f038d592a0046caa276db989732b39168ce30e Mon Sep 17 00:00:00 2001 From: Jackwang Date: Mon, 20 Jul 2020 11:45:46 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E5=86=85=E5=AE=B9=E5=AE=A1=E6=A0=B8?= =?UTF-8?q?=E3=80=91-=E3=80=90=E5=90=8E=E5=8F=B0=E5=88=97=E8=A1=A8?= =?UTF-8?q?=E6=97=B6=E9=97=B4=E8=B0=83=E6=95=B4=E3=80=91-=EF=BC=88?= =?UTF-8?q?=E7=8E=8B=E7=AB=A5=EF=BC=89-2020/07/20?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/resources/mapper/CheckRecordsDao.xml | 4 ++-- .../src/main/resources/mapper/ViolationsRecordsDao.xml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/esua-epdc/epdc-module/epdc-content-security/epdc-content-security-server/src/main/resources/mapper/CheckRecordsDao.xml b/esua-epdc/epdc-module/epdc-content-security/epdc-content-security-server/src/main/resources/mapper/CheckRecordsDao.xml index e8fbf82bd..5bd20a1fc 100644 --- a/esua-epdc/epdc-module/epdc-content-security/epdc-content-security-server/src/main/resources/mapper/CheckRecordsDao.xml +++ b/esua-epdc/epdc-module/epdc-content-security/epdc-content-security-server/src/main/resources/mapper/CheckRecordsDao.xml @@ -37,8 +37,8 @@ la.DESCRIPTION as label, st.DESCRIPTION as SUGGESTION, st.code as suggestionCode, - date_format(ecr.CREATED_TIME,'%Y-%m-%d %H:%m') as CREATED_TIME, - date_format(ecr.AUDIT_TIME,'%Y-%m-%d %H:%m') as AUDIT_TIME + date_format(ecr.CREATED_TIME,'%Y-%m-%d %H:%i') as CREATED_TIME, + date_format(ecr.AUDIT_TIME,'%Y-%m-%d %H:%i') as AUDIT_TIME FROM `epdc_check_records` ecr left join epdc_check_code mo on ecr.MODULE=mo.`CODE` left join epdc_check_code la on ecr.LABEL=la.`CODE` diff --git a/esua-epdc/epdc-module/epdc-content-security/epdc-content-security-server/src/main/resources/mapper/ViolationsRecordsDao.xml b/esua-epdc/epdc-module/epdc-content-security/epdc-content-security-server/src/main/resources/mapper/ViolationsRecordsDao.xml index 32acac003..6e1b8ff94 100644 --- a/esua-epdc/epdc-module/epdc-content-security/epdc-content-security-server/src/main/resources/mapper/ViolationsRecordsDao.xml +++ b/esua-epdc/epdc-module/epdc-content-security/epdc-content-security-server/src/main/resources/mapper/ViolationsRecordsDao.xml @@ -34,8 +34,8 @@ evr.RATE, la.DESCRIPTION as label, IF(evr.DECISION='1','系统判定','人工审核') decision, - date_format(evr.CREATED_TIME,'%Y-%m-%d %H:%m') as CREATED_TIME, - date_format(evr.AUDIT_TIME,'%Y-%m-%d %H:%m') as AUDIT_TIME + date_format(evr.CREATED_TIME,'%Y-%m-%d %H:%i') as CREATED_TIME, + date_format(evr.AUDIT_TIME,'%Y-%m-%d %H:%i') as AUDIT_TIME FROM `epdc_violations_records` evr left join epdc_check_code mo on evr.MODULE=mo.`CODE` left join epdc_check_code la on evr.LABEL=la.`CODE`