From 2b41e9987eb047e42d9e33b9a3573156e60446b5 Mon Sep 17 00:00:00 2001 From: yjz <3131811435@qq.com> Date: Fri, 27 Oct 2023 16:29:12 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E8=87=AA=E5=AE=9A=E4=B9=89=E5=AF=B9?= =?UTF-8?q?=E6=AF=94):=20=E6=A0=87=E5=87=86=E5=88=97=E8=A1=A8=E6=9F=A5?= =?UTF-8?q?=E8=AF=A2=E9=97=AE=E9=A2=98=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../mapper/xml/LawsCustomCompareInfoMapper.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/laws-modules/src/main/java/com/jero/modules/laws/customcompare/mapper/xml/LawsCustomCompareInfoMapper.xml b/laws-modules/src/main/java/com/jero/modules/laws/customcompare/mapper/xml/LawsCustomCompareInfoMapper.xml index e7a6d519..e5d78dfa 100644 --- a/laws-modules/src/main/java/com/jero/modules/laws/customcompare/mapper/xml/LawsCustomCompareInfoMapper.xml +++ b/laws-modules/src/main/java/com/jero/modules/laws/customcompare/mapper/xml/LawsCustomCompareInfoMapper.xml @@ -43,15 +43,15 @@ select standard.* - from (select id, standard_number, standard_name, standard_state, '' country_or_region, release_date, 1 standard_type + from (select id, standard_number, standard_name, standard_state, '' country_or_region, release_date, 1 standard_type, create_time from laws_domestic_standard where del_flag = 0 union all - select id, standard_number, standard_name, standard_state, country_or_region, release_date, 2 standard_type + select id, standard_number, standard_name, standard_state, country_or_region, release_date, 2 standard_type, create_time from laws_overseas_standard where del_flag = 0 union all - select id, standard_number, standard_name, standard_state, '' country_or_region, release_date, 3 standard_type + select id, standard_number, standard_name, standard_state, '' country_or_region, release_date, 3 standard_type, create_time from laws_enterprise_standard where del_flag = 0) standard ${ew.customSqlSegment}