Sfoglia il codice sorgente

feat:适配warehouse数据库

chenjianhua 1 mese fa
parent
commit
16b421fef1

+ 1 - 1
service-base/src/main/resources/mapper/daq/ChannelMapper.xml

@@ -59,7 +59,7 @@
         select info.id,
         info.channel_name,
         info.channel_remark,
-        group_concat(e.email) as email,
+        wm_concat(e.email) as email,
         info.createtime,
         info.updatetime,
         info.isvalid,

+ 2 - 2
service-base/src/main/resources/mapper/daq/system/SysUserMapper.xml

@@ -200,8 +200,8 @@
                su.user_id as userId,
                su.user_name as userName,
                su.user_type as userType,
-               group_concat(ci.id) as channelId,
-               group_concat(ci.channel_name) as channelName
+               wm_concat(ci.id) as channelId,
+               wm_concat(ci.channel_name) as channelName
         from sys_user su
         left join user_channel_mapping ucm
         on su.user_id = ucm.user_id and ucm.isvalid=1